Home
last modified time | relevance | path

Searched refs:native (Results 1 – 25 of 868) sorted by relevance

12345678910>>...35

/external/elfutils/tests/
Drun-native-test.sh29 tempfiles native.c native
30 echo 'main () { while (1) pause (); }' > native.c
32 native=0
35 test $native -eq 0 || {
36 kill -9 $native 2> /dev/null || :
37 wait $native 2> /dev/null || :
39 native=0
59 $cc -o native -g native.c > /dev/null 2>&1 &&
61 { ./native > /dev/null 2>&1 & native=$! ; } &&
62 sleep 1 && kill -0 $native 2> /dev/null &&
[all …]
/external/icu/icu4c/source/data/rbnf/
Dko.txt39 "%spellout-cardinal-native-attributive:",
72 "%spellout-cardinal-native:",
119 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
164 "%spellout-ordinal-native-count:",
167 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
168 "%%spellout-ordinal-native-count-smaller:",
171 "2: =%spellout-cardinal-native-attributive=;",
172 "50: =%%spellout-ordinal-native-count-larger=;",
173 "%%spellout-ordinal-native-count-larger:",
176 "2: =%spellout-cardinal-native-attributive=;",
[all …]
/external/libcxx/benchmarks/
Dfilesystem.bench.cpp19 benchmark::DoNotOptimize(PP.native().data()); in BM_PathConstructString()
21 const path P(PP.native()); in BM_PathConstructString()
22 benchmark::DoNotOptimize(P.native().data()); in BM_PathConstructString()
36 benchmark::DoNotOptimize(PP.native().data()); in BM_PathConstructCStr()
38 const path P(PP.native().c_str()); in BM_PathConstructCStr()
39 benchmark::DoNotOptimize(P.native().data()); in BM_PathConstructCStr()
54 auto Start = Iter(PP.native().begin()); in BM_PathConstructIter()
55 auto End = Iter(PP.native().end()); in BM_PathConstructIter()
56 benchmark::DoNotOptimize(PP.native().data()); in BM_PathConstructIter()
61 benchmark::DoNotOptimize(P.native().data()); in BM_PathConstructIter()
[all …]
DCMakeLists.txt38 # Build Google Benchmark for the native stdlib
48 ExternalProject_Add(google-benchmark-native
50 PREFIX benchmark-native
52 INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native
68 set(BENCHMARK_NATIVE_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native)
119 add_dependencies(${native_target} google-benchmark-native
133 OUTPUT_NAME "${name}.native.out"
/external/libmojo/mojo/public/js/
Dcore.js121 function close(handle) { [native code] }
132 function wait(handle, signals, deadline) { [native code] }
146 function waitMany(handles, signals, deadline) { [native code] }
160 function createMessagePipe(optionsDict) { [native code] }
173 function writeMessage(handle, buffer, handlesArray, flags) { [native code] }
187 function readMessage(handle, flags) { [native code] }
202 function createDataPipe(optionsDict) { [native code] }
216 function writeData(handle, buffer, flags) { [native code] }
230 function readData(handle, flags) { [native code] }
238 function isHandle(value) { [native code] }
Dsupport.js26 function asyncWait(handle, signals, callback) { [native code] }
35 function cancelWait(waitId) { [native code] }
47 function watch(handle, signals, callback) { [native code] }
53 function cancelWatch(watchId) { [native code] }
/external/llvm/bindings/ocaml/llvm/
DMETA.llvm.in5 archive(native) = "llvm.cmxa"
13 archive(native) = "llvm_analysis.cmxa"
21 archive(native) = "llvm_bitreader.cmxa"
29 archive(native) = "llvm_bitwriter.cmxa"
37 archive(native) = "llvm_executionengine.cmxa"
45 archive(native) = "llvm_ipo.cmxa"
53 archive(native) = "llvm_irreader.cmxa"
61 archive(native) = "llvm_scalar_opts.cmxa"
69 archive(native) = "llvm_transform_utils.cmxa"
77 archive(native) = "llvm_vectorize.cmxa"
[all …]
/external/wycheproof/
Dbuild_defs.bzl9 native.java_test(
20 # We can't use native.alias, because aliased tests are not run.
22 native.java_test(
36 native.java_test(
47 # We can't use native.alias, because aliased tests are not run.
49 native.java_test(
65 native.java_test(
77 # We can't use native.alias, because aliased tests are not run.
79 native.java_test(
96 native.java_test(
[all …]
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
DMETA.llvm.in5 archive(native) = "llvm.cmxa"
14 archive(native) = "llvm_analysis.cmxa"
22 archive(native) = "llvm_bitreader.cmxa"
30 archive(native) = "llvm_bitwriter.cmxa"
38 archive(native) = "llvm_executionengine.cmxa"
46 archive(native) = "llvm_ipo.cmxa"
54 archive(native) = "llvm_scalar_opts.cmxa"
62 archive(native) = "llvm_target.cmxa"
/external/libmojo/base/android/jni_generator/
Djni_generator.py393 native = NativeMethod(
401 natives += [native]
782 for native in self.natives:
783 ret += [self.GetNativeStub(native)]
799 for native in self.natives:
800 if (native.java_class_name == clazz or
801 (not native.java_class_name and clazz == self.class_name)):
802 ret += [self.GetKMethodArrayEntry(native)]
888 def GetJNIFirstParamType(self, native): argument
889 if native.type == 'method':
[all …]
Dgolden_sample_for_tests_jni.h60 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeDestroy() local
61 CHECK_NATIVE_PTR(env, jcaller, native, "Destroy"); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeDestroy()
62 return native->Destroy(env, JavaParamRef<jobject>(env, jcaller)); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeDestroy()
108 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethod() local
109 CHECK_NATIVE_PTR(env, jcaller, native, "Method", 0); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethod()
110 return native->Method(env, JavaParamRef<jobject>(env, jcaller)); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethod()
118 CPPClass::InnerClass* native = in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethodOtherP0() local
120 CHECK_NATIVE_PTR(env, jcaller, native, "MethodOtherP0", 0); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethodOtherP0()
121 return native->MethodOtherP0(env, JavaParamRef<jobject>(env, jcaller)); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeMethodOtherP0()
130 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); in Java_org_chromium_example_jni_1generator_SampleForTests_nativeAddStructB() local
[all …]
DtestNatives.golden39 ChromeBrowserProvider* native =
41 CHECK_NATIVE_PTR(env, jcaller, native, "Destroy");
42 return native->Destroy(env, JavaParamRef<jobject>(env, jcaller));
52 ChromeBrowserProvider* native =
54 CHECK_NATIVE_PTR(env, jcaller, native, "AddBookmark", 0);
55 return native->AddBookmark(env, JavaParamRef<jobject>(env, jcaller),
128 ChromeBrowserProvider* native =
130 CHECK_NATIVE_PTR(env, jcaller, native, "AddBookmarkFromAPI", 0);
131 return native->AddBookmarkFromAPI(env, JavaParamRef<jobject>(env, jcaller),
163 ChromeBrowserProvider* native =
[all …]
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/
Dsource.pass.cpp58 assert(p.native() == Expect); in RunTestCase()
70 assert(p.native() == Expect); in RunTestCase()
84 assert(p.native() == Expect); in RunTestCase()
96 assert(p.native() == Expect); in RunTestCase()
111 assert(p.native() == Expect); in RunTestCase()
121 assert(p.native() == Expect); in RunTestCase()
131 assert(p.native() == Expect); in RunTestCase()
146 assert(p.native() == Expect); in RunTestCase()
157 assert(p.native() == Expect); in RunTestCase()
169 assert(p.native() == Expect); in RunTestCase()
/external/syslinux/gpxe/src/drivers/block/
Data.c55 ( unsigned long long ) command->cb.lba.native, in ata_command()
56 command->cb.count.native ); in ata_command()
95 command.cb.lba.native = block; in ata_read()
96 command.cb.count.native = count; in ata_read()
121 command.cb.lba.native = block; in ata_write()
122 command.cb.count.native = count; in ata_write()
147 command.cb.count.native = 1; in ata_identify()
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.construct/
Dsource.pass.cpp46 assert(p.native() == Expect); in RunTestCase()
53 assert(p.native() == Expect); in RunTestCase()
60 assert(p.native() == Expect); in RunTestCase()
65 assert(p.native() == Expect); in RunTestCase()
72 assert(p.native() == Expect); in RunTestCase()
78 assert(p.native() == Expect); in RunTestCase()
/external/libcxx/test/std/experimental/filesystem/class.path/path.nonmember/
Dswap.pass.cpp44 assert(p1.native() == value2); in main()
45 assert(p2.native() == value1); in main()
47 assert(p1.native() == value1); in main()
48 assert(p2.native() == value2); in main()
/external/llvm/utils/
Dcheck-each-file13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
117 gmake $f CC=llvm-native-gcc CXX=llvm-native-gxx
128 echo Trying to compile $f with native gcc and rebuild $program
/external/swiftshader/third_party/LLVM/utils/
Dcheck-each-file13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
117 gmake $f CC=llvm-native-gcc CXX=llvm-native-gxx
128 echo Trying to compile $f with native gcc and rebuild $program
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler.c101 struct etna_native_reg native; /* native register to map to */ member
303 temps[idx].native = alloc_new_native_reg(c); in assign_temporaries_to_native()
328 if (!inout->active || inout->native.valid) { /* Skip if already a native register assigned */ in assign_inouts_to_temporaries()
338 inout->native = temp->native; in assign_inouts_to_temporaries()
349 if (inout->active && !inout->native.valid) in assign_inouts_to_temporaries()
350 inout->native = alloc_new_native_reg(c); in assign_inouts_to_temporaries()
628 reg->native = etna_native_temp(0); in assign_special_inputs()
696 !c->file[TGSI_FILE_OUTPUT].reg[out_idx].native.valid && in etna_compile_pass_optimize_outputs()
698 c->file[TGSI_FILE_OUTPUT].reg[out_idx].native = in etna_compile_pass_optimize_outputs()
699 c->file[TGSI_FILE_TEMPORARY].reg[in_idx].native; in etna_compile_pass_optimize_outputs()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSurfaceTests.cpp272 const NativeObjects native (context, instHelper.supportedExtensions, wsiType); in createSurfaceTest() local
273 …e (createSurface(instHelper.vki, *instHelper.instance, wsiType, *native.display, *native.window)); in createSurfaceTest()
285 const NativeObjects native (context, instHelper.supportedExtensions, wsiType); in createSurfaceCustomAllocatorTest() local
289 *native.display, in createSurfaceCustomAllocatorTest()
290 *native.window, in createSurfaceCustomAllocatorTest()
331 const NativeObjects native (context, instHelper.supportedExtensions, wsiType); in createSurfaceSimulateOOMTest() local
335 *native.display, in createSurfaceSimulateOOMTest()
336 *native.window, in createSurfaceSimulateOOMTest()
383 const NativeObjects native (context, instHelper.supportedExtensions, wsiType); in querySurfaceSupportTest() local
384 … (createSurface(instHelper.vki, *instHelper.instance, wsiType, *native.display, *native.window)); in querySurfaceSupportTest()
[all …]
/external/llvm/test/CodeGen/ARM/
Dno-tail-call.ll20 %.native = getelementptr inbounds %foo, %foo* %0, i32 0, i32 0
21 %.native.value = getelementptr inbounds %Sf, %Sf* %.native, i32 0, i32 0
22 store float 0.000000e+00, float* %.native.value, align 4
58 %.native = getelementptr inbounds %foo, %foo* %0, i32 0, i32 0
59 %.native.value = getelementptr inbounds %Sf, %Sf* %.native, i32 0, i32 0
60 store float 0.000000e+00, float* %.native.value, align 4
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
D_tags2 <*.{byte,native}>: g++, use_llvm, use_llvm_analysis
3 <*.{byte,native}>: use_llvm_executionengine, use_llvm_target
4 <*.{byte,native}>: use_llvm_scalar_opts, use_bindings
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
D_tags2 <*.{byte,native}>: g++, use_llvm, use_llvm_analysis
3 <*.{byte,native}>: use_llvm_executionengine, use_llvm_target
4 <*.{byte,native}>: use_llvm_scalar_opts, use_bindings
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
D_tags2 <*.{byte,native}>: g++, use_llvm, use_llvm_analysis
3 <*.{byte,native}>: use_llvm_executionengine, use_llvm_target
4 <*.{byte,native}>: use_llvm_scalar_opts, use_bindings
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
D_tags2 <*.{byte,native}>: g++, use_llvm, use_llvm_analysis
3 <*.{byte,native}>: use_llvm_executionengine, use_llvm_target
4 <*.{byte,native}>: use_llvm_scalar_opts, use_bindings

12345678910>>...35