HomeSort by relevance Sort by last modified time
    Searched defs:int_type (Results 1 - 25 of 30) sorted by null

1 2

  /art/runtime/
primitive.cc 34 int32_t int_type = static_cast<int32_t>(type); local
36 os << kTypeNames[int_type];
38 os << "Type[" << int_type << "]"; local
  /bionic/libc/upstream-openbsd/lib/libc/locale/
wcstoimax.c 15 typedef intmax_t int_type; typedef
wcstol.c 14 typedef long int_type; typedef
wcstoll.c 14 typedef long long int int_type; typedef
  /art/test/701-easy-div-rem/
genMain.py 36 int_type = local_vars['@INT@'] variable
49 calls[int_type] = calls.get(int_type, '') + subst_vars(local_vars, '''
55 for int_type in ('int', 'long'):
56 local_vars['@INT@'] = int_type
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_const.h 139 LLVMTypeRef int_type; local
143 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *));
144 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
146 LLVMPointerType(int_type, 0),
lp_bld_sample.h 215 struct lp_type int_type; member in struct:lp_build_sample_context
436 struct lp_type int_type,
lp_bld_arit.c 1175 LLVMTypeRef int_type; local
2030 struct lp_type int_type = lp_int_type(bld->type); local
2249 struct lp_type int_type = lp_int_type(bld->type); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.h 139 LLVMTypeRef int_type; local
143 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *));
144 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
146 LLVMPointerType(int_type, 0),
lp_bld_sample.h 215 struct lp_type int_type; member in struct:lp_build_sample_context
436 struct lp_type int_type,
  /art/compiler/sea_ir/types/
type_data_test.cc 30 const Type* int_type = &type_cache.Integer(); local
32 td.SetTypeOf(first_instruction_id, int_type);
33 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
36 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
type_inference_visitor_test.cc 40 const Type* int_type = &type_cache.Integer(); local
42 const Type* ib_type = tiv.MergeTypes(int_type, byte_type);
43 const Type* bi_type = tiv.MergeTypes(byte_type, int_type);
44 EXPECT_TRUE(ib_type == int_type);
45 EXPECT_TRUE(bi_type == int_type);
52 const Type* int_type = &type_cache.Integer(); local
54 const Type* is_type = tiv.MergeTypes(int_type, short_type);
55 const Type* si_type = tiv.MergeTypes(short_type, int_type);
56 EXPECT_TRUE(is_type == int_type);
57 EXPECT_TRUE(si_type == int_type);
96 const Type* int_type = &type_cache.Integer(); local
113 const Type* int_type = &type_cache.Integer(); local
    [all...]
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 12 // int_type overflow(int_type c = traits::eof());
27 typedef typename base::int_type int_type; typedef in struct:test_buf
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 12 // int_type pbackfail(int_type c = traits::eof());
25 typedef typename base::int_type int_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
seekoff.pass.cpp 28 typedef typename base::int_type int_type; typedef in struct:test_buf
36 virtual int_type underflow() {return base::underflow();}
underflow.pass.cpp 12 // int_type underflow();
27 typedef typename base::int_type int_type; typedef in struct:test_buf
34 virtual int_type underflow() {return base::underflow();}
  /external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
underflow.pass.cpp 14 // int_type underflow();
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type underflow() {return base::underflow();}
  /external/lldb/test/types/
HideTestFailures.py 78 self.int_type()
85 self.int_type()
122 def int_type(self): member in class:DebugIntegerTypesFailures
  /external/clang/test/SemaTemplate/
class-template-spec.cpp 39 typedef int int_type; typedef
40 void testme(X<int_type> *x1, X<float, int> *x2) {
  /external/chromium_org/third_party/mesa/src/src/glsl/
builtin_types.h 69 const glsl_type *const glsl_type::int_type = & builtin_core_types[4]; member in class:glsl_type
glsl_types.h 154 static const glsl_type *const int_type; member in struct:glsl_type
  /external/mesa3d/src/glsl/
builtin_types.h 69 const glsl_type *const glsl_type::int_type = & builtin_core_types[4]; member in class:glsl_type
glsl_types.h 154 static const glsl_type *const int_type; member in struct:glsl_type

Completed in 8576 milliseconds

1 2