/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.intseq/ |
integer_seq.pass.cpp | 29 using int3 = std::integer_sequence<int, 3, 2, 1>; 35 static_assert ( std::is_same<int3::value_type, int>::value, "int3 type wrong" ); 36 static_assert ( int3::size() == 3, "int3 size wrong" );
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.general/ |
integer_seq.pass.cpp | 33 using int3 = std::make_integer_sequence<int, 3>; // generates int: 0,1,2 41 static_assert ( std::is_same<int3::value_type, int>::value, "int3 type wrong" ); 42 static_assert ( int3::size () == 3, "int3 size wrong" ); 62 auto t3 = extract ( tup, int3() ); 63 static_assert ( std::tuple_size<decltype(t3)>::value == int3::size (), "t3 size wrong");
|
/art/runtime/arch/x86/ |
asm_support_x86.S | 97 int3 98 int3
|
quick_entrypoints_x86.S | 87 int3 // unreached 101 int3 // unreached 116 int3 // unreached 131 int3 // unreached [all...] |
/frameworks/rs/tests/typecheck/ |
kernels.rs | 62 int3 i3; 63 int3 i3i = {1, 2, 3};
|
/external/chromium_org/third_party/angle/src/compiler/ |
Initialize.cpp | 25 TType *int3 = new TType(EbtInt, EbpUndefined, EvqGlobal, 3); local 261 symbolTable.insertBuiltIn(bool3, "lessThan", int3, int3); 269 symbolTable.insertBuiltIn(bool3, "lessThanEqual", int3, int3); 277 symbolTable.insertBuiltIn(bool3, "greaterThan", int3, int3); 285 symbolTable.insertBuiltIn(bool3, "greaterThanEqual", int3, int3); 293 symbolTable.insertBuiltIn(bool3, "equal", int3, int3) [all...] |
/external/skia/tests/ |
PDFPrimitivesTest.cpp | 173 SkAutoTUnref<SkPDFInt> int3(new SkPDFInt(3)); 179 catalog.addObject(int3.get(), false); 183 REPORTER_ASSERT(reporter, catalog.getObjectNumberSize(int3.get()) == 3); 188 catalog.emitObjectNumber(&buffer, int3.get());
|
/frameworks/rs/scriptc/ |
rs_debug.rsh | 211 rsDebug(const char *, int3);
|
rs_allocation.rsh | 192 GET_ELEMENT_AT(int3) 327 SET_ELEMENT_AT(int3)
|
rs_cl.rsh | 126 _RS_RUNTIME int3 __attribute__((const, overloadable)) fnc(float3 v); \ 146 _RS_RUNTIME float3 __attribute__((const, overloadable)) fnc(float3 v1, int3 v2); \ 164 _RS_RUNTIME float3 __attribute__((pure, overloadable)) fnc(float3 v1, int3 *v2); \ 195 fnc(float3 v1, float3 v2, int3 *v3); \
|
/prebuilts/sdk/renderscript/include/ |
rs_debug.rsh | 211 rsDebug(const char *, int3);
|
rs_allocation.rsh | 192 GET_ELEMENT_AT(int3) 327 SET_ELEMENT_AT(int3)
|
/art/compiler/trampolines/ |
trampoline_compiler.cc | 92 __ int3();
|
/bionic/libc/kernel/arch-mips/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/development/ndk/platforms/android-9/arch-mips/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/external/kernel-headers/original/asm-mips/sgi/ |
ioc.h | 176 struct sgint_regs int3; member in struct:sgioc_regs
|
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/sgi/ |
ioc.h | 196 struct sgint_regs int3; member in struct:sgioc_regs
|
/cts/tests/src/android/renderscript/cts/ |
verify.rs | 148 int3 pref = convert_int3(rsGetElementAt_uchar3(in1, x, y)); 149 int3 ptst = convert_int3(rsGetElementAt_uchar3(in2, x, y)); 150 int3 d = convert_int3(abs(pref - ptst));
|
/external/qemu/target-i386/ |
kvm.c | 791 const static uint8_t int3 = 0xcc; local 794 cpu_memory_rw_debug(env, bp->pc, (uint8_t *)&int3, 1, 1)) 801 uint8_t int3; local 803 if (cpu_memory_rw_debug(env, bp->pc, &int3, 1, 0) || int3 != 0xcc ||
|
/frameworks/rs/cpu_ref/ |
rsCpuRuntimeStubs.cpp | 48 typedef int32_t int3 __attribute__((ext_vector_type(3))); typedef 159 static void SC_debugI3(const char *s, const int3 *i) { 160 ALOGD("int3 %s {%d, %d, %d} 0x%x 0x%x 0x%x", s, i->x, i->y, i->z, i->x, i->y, i->z);
|
/frameworks/rs/driver/runtime/ |
rs_cl.c | 4 extern float3 __attribute__((overloadable)) convert_float3(int3 c); 8 extern int3 __attribute__((overloadable)) convert_int3(float3 c); 54 extern int3 __attribute__((overloadable)) fnc(float3 v) { \ 55 int3 r; \ 123 extern float3 __attribute__((overloadable)) fnc(float3 v1, int3 v2) { \ 210 extern float3 __attribute__((overloadable)) fnc(float3 v1, int3 *v2) { \ 273 fnc(float3 v1, float3 v2, int3 *v3) { \ 522 extern float3 __attribute__((overloadable)) pown(float3 v, int3 p) { [all...] |