/external/ltp/testcases/open_posix_testsuite/functional/semaphores/ |
sem_readerwriter.c | 112 int shared = 1; local 121 if (-1 == sem_init(&r_lock, shared, r_value)) { 125 if (-1 == sem_init(&w_lock, shared, w_value)) {
|
/external/v8/src/compiler/ |
js-call-reducer.h | 62 Handle<SharedFunctionInfo> shared); 80 Reduction ReduceArrayForEach(Node* node, Handle<SharedFunctionInfo> shared); 83 Handle<SharedFunctionInfo> shared); 84 Reduction ReduceArrayMap(Node* node, Handle<SharedFunctionInfo> shared); 85 Reduction ReduceArrayFilter(Node* node, Handle<SharedFunctionInfo> shared); 88 Handle<SharedFunctionInfo> shared); 89 Reduction ReduceArrayEvery(Node* node, Handle<SharedFunctionInfo> shared); 93 Reduction ReduceArraySome(Node* node, Handle<SharedFunctionInfo> shared); 112 Reduction ReduceJSCall(Node* node, Handle<SharedFunctionInfo> shared); 135 Handle<SharedFunctionInfo> shared); [all...] |
/external/v8/src/profiler/ |
profiler-listener.cc | 63 SharedFunctionInfo* shared, 68 rec->entry = NewCodeEntry(tag, GetName(shared->DebugName()), 69 GetName(InferScriptName(script_name, shared)), 74 rec->entry->FillFunctionInfo(shared); 81 SharedFunctionInfo* shared, 88 if (shared->script()->IsScript()) { 89 Script* script = Script::cast(shared->script()); 103 NewCodeEntry(tag, GetName(shared->DebugName()), 104 GetName(InferScriptName(script_name, shared)), line, column, 107 rec->entry->FillFunctionInfo(shared); [all...] |
profiler-listener.h | 37 AbstractCode* code, SharedFunctionInfo* shared, 40 AbstractCode* code, SharedFunctionInfo* shared, 49 SharedFunctionInfo* shared) override;
|
/external/vboot_reference/tests/ |
verify_kernel.c | 21 static VbSharedDataHeader *shared = (VbSharedDataHeader *)shared_data; variable 87 /* Set up shared data blob */ 88 VbSharedDataInit(shared, sizeof(shared_data)); 89 VbSharedDataSetKernelKey(shared, kernkey);
|
/external/virglrenderer/tests/fuzzer/ |
virgl_fuzzer.c | 77 EGLContext shared = param->shared ? eglGetCurrentContext() : NULL; local 82 shared,
|
/frameworks/av/media/libnblog/include/media/nblog/ |
Reader.h | 39 struct Shared; 48 // The size of the shared memory must be at least Timeline::sharedSize(size). 49 Reader(const void *shared, size_t size, const std::string &name); 71 /*const*/ Shared* const mShared; // raw pointer to shared memory, actually const but not 113 DumpReader(const void *shared, size_t size, const std::string &name) 114 : Reader(shared, size, name) {}
|
/external/wycheproof/java/com/google/security/wycheproof/testcases/ |
EcdhTest.java | 81 // Raw ECDH. The shared secret is the x-coordinate of the ECDH computation. 97 final String shared; // hexadecimal representation of the shared secret field in class:EcdhTest.EcdhTestVector 99 public EcdhTestVector(String curvename, String pub, BigInteger s, String shared) { 103 this.shared = shared; 172 // vectors with extreme values for the shared secret 904 String shared = TestUtil.bytesToHex(ka.generateSecret()); local 954 String shared = TestUtil.bytesToHex(ka.generateSecret()); local [all...] |
/build/make/core/combo/ |
TARGET_linux-mips.mk | 44 define $(combo_var_prefix)transform-shared-lib-to-toc
|
TARGET_linux-x86.mk | 37 define $(combo_var_prefix)transform-shared-lib-to-toc
|
/cts/hostsidetests/os/test-apps/StaticSharedNativeLibProvider/ |
Android.mk | 32 LOCAL_AAPT_FLAGS := --shared-lib 43 # Build Shared Library
|
/device/generic/goldfish-opengl/system/OpenglSystemCommon/ |
Android.mk | 3 $(call emugl-begin-shared-library,libOpenglSystemCommon) 57 $(call emugl-export,SHARED_LIBRARIES,android-emu-shared)
|
/device/google/cuttlefish/shared/auto/ |
device.mk | 20 DEVICE_MANIFEST_FILE += device/google/cuttlefish/shared/config/manifest.xml 21 DEVICE_MANIFEST_FILE += device/google/cuttlefish/shared/auto/manifest.xml 26 $(call inherit-product, device/google/cuttlefish/shared/device.mk) 99 PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := device/google/cuttlefish/shared/overlay
|
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/ |
PartiallyCompressingOutputStreamTest.java | 17 import com.google.archivepatcher.shared.JreDeflateParameters; 18 import com.google.archivepatcher.shared.TypedRange; 19 import com.google.archivepatcher.shared.UnitTestZipArchive; 20 import com.google.archivepatcher.shared.UnitTestZipEntry;
|
/external/archive-patcher/generator/src/test/java/com/google/archivepatcher/generator/ |
FileByFileV1DeltaGeneratorTest.java | 17 import com.google.archivepatcher.shared.UnitTestZipArchive;
|
/external/archive-patcher/sample/src/main/java/com/google/archivepatcher/sample/ |
SamplePatchApplier.java | 18 import com.google.archivepatcher.shared.DefaultDeflateCompatibilityWindow;
|
SamplePatchGenerator.java | 18 import com.google.archivepatcher.shared.DefaultDeflateCompatibilityWindow;
|
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/ |
RandomAccessFileOutputStream.java | 15 package com.google.archivepatcher.shared;
|
/external/clang/test/OpenMP/ |
distribute_parallel_for_ast_print.cpp | 85 #pragma omp distribute parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) if (parallel :argc) num_threads(N) default(shared) shared(e) reduction(+ : h) dist_schedule(static,N) 97 // CHECK: #pragma omp distribute parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) if(parallel: argc) num_threads(N) default(shared) shared(e) reduction(+: h) dist_schedule(static, N) 128 #pragma omp distribute parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h) dist_schedule(static, b) 132 // CHECK: #pragma omp distribute parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) if(argc) num_threads(a) default(shared) shared(e) reduction(+: h) dist_schedule(static, b)
|
distribute_parallel_for_simd_ast_print.cpp | 85 #pragma omp distribute parallel for simd private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) if (parallel :argc) num_threads(N) default(shared) shared(e) reduction(+ : h) dist_schedule(static,N) 97 // CHECK: #pragma omp distribute parallel for simd private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) if(parallel: argc) num_threads(N) default(shared) shared(e) reduction(+: h) dist_schedule(static, N) 129 #pragma omp distribute parallel for simd private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h) dist_schedule(static, b) 133 // CHECK: #pragma omp distribute parallel for simd private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) if(argc) num_threads(a) default(shared) shared(e) reduction(+: h) dist_schedule(static, b)
|
parallel_for_ast_print.cpp | 75 #pragma omp parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered(N) if (parallel :argc) num_threads(N) default(shared) shared(e) reduction(+ : h) 87 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered(N) if(parallel: argc) num_threads(N) default(shared) shared(e) reduction(+: h) 114 #pragma omp parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h) linear(a:-5) 118 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered if(argc) num_threads(a) default(shared) shared(e) reduction(+: h) linear(a: -5)
|
/external/icu/icu4c/source/config/ |
mh-hpux-gcc | 33 ## Shared library options 36 ## Commands to make a shared library 37 SHLIB.c= $(CC) $(DEFS) $(CFLAGS) $(LDFLAGS) $(SHAREDLIBCXXFLAGS) -shared -Wl,+s $(LD_DEFAULTPATH) $(LD_SOOPTIONS) 38 SHLIB.cc= $(CXX) $(DEFS) $(CXXFLAGS) $(LDFLAGS) $(SHAREDLIBCXXFLAGS) -shared -Wl,+s $(LD_DEFAULTPATH) $(LD_SOOPTIONS) 50 ## Shared object suffix 52 ## Non-shared intermediate object suffix 87 ## Remove shared library 's'
|
/external/ltp/testcases/commands/ldd/datafiles/ |
Makefile | 30 $(CC) $(CFLAGS) -shared -o $@ $^
|
/external/ltp/testcases/kernel/fs/fs_bind/bin/ |
makedir | 78 echo "mount $mflags --make-shared \"$dir\"" 79 mount $mflags --make-shared "$dir" 2> /dev/null || \ 80 smount "$dir" shared || exit $?
|
/external/ltp/testcases/open_posix_testsuite/stress/semaphores/ |
multi_con_pro.c | 148 int shared = 1; local 175 if (-1 == sem_init(&buf->full, shared, full_value)) { 184 if (-1 == sem_init(&buf->empty, shared, empty_value)) { 188 if (-1 == sem_init(&buf->lock, shared, lock_value)) {
|