Searched refs:load (Results 1 – 17 of 17) sorted by relevance
/bionic/tests/ |
D | stdlib_test.cpp | 897 double load[3]; in TEST() local 900 ASSERT_EQ(-1, getloadavg(load, -1)); in TEST() 901 ASSERT_EQ(-1, getloadavg(load, INT_MIN)); in TEST() 904 ASSERT_EQ(0, getloadavg(load, 0)); in TEST() 907 ASSERT_EQ(1, getloadavg(load, 1)); in TEST() 908 ASSERT_EQ(2, getloadavg(load, 2)); in TEST() 909 ASSERT_EQ(3, getloadavg(load, 3)); in TEST() 910 ASSERT_EQ(3, getloadavg(load, 4)); in TEST() 911 ASSERT_EQ(3, getloadavg(load, INT_MAX)); in TEST() 917 load[0] = load[1] = load[2] = nan(""); in TEST() [all …]
|
D | mte_test.cpp | 37 volatile int load ATTRIBUTE_UNUSED = *mistagged_p; in test_tag_mismatch() 44 volatile int load ATTRIBUTE_UNUSED = *mistagged_p; in test_tag_mismatch()
|
D | utils.h | 163 std::string filename = android::base::StringPrintf("/proc/%d/stat", tid.load()); in WaitUntilThreadSleep()
|
D | malloc_test.cpp | 1182 while (!go->load()) { in SetAllocationLimit()
|
/bionic/benchmarks/ |
D | atomic_benchmark.cpp | 58 result += test_loc.load(std::memory_order_relaxed); in BM_atomic_load_relaxed() 68 result += test_loc.load(std::memory_order_acquire); in BM_atomic_load_acquire() 119 result += test_loc.load(std::memory_order_relaxed); in BM_atomic_acquire_fence() 130 result += test_loc.load(std::memory_order_relaxed); in BM_atomic_seq_cst_fence()
|
/bionic/benchmarks/linker_relocation/regen/ |
D | dump_relocs.py | 207 return load(candidate_path) 211 def load(path: Path) -> LoadedLibrary: function 229 return load(path)
|
D | gen_bench.py | 390 root = json_to_elf_tree(json.load(f))
|
/bionic/ |
D | android-changes-for-ndk-developers.md | 25 * At the affected API level and above, we’ll refuse to load the library. 45 to topologically sort your libraries and load them in reverse order. 60 With API 22, load order switched from depth-first to breadth-first to 115 tried to load both. This also applied to DT_NEEDED entries. 119 but the basename. These apps will fail to load on API level 23 and above. 140 that you want to load directly from your APK must be page aligned 154 applications are no longer able to load non-NDK platform libraries. The 156 are not accessible regardless of the way code tries to load them: 199 load private libraries, preventing the application from loading. 240 modified. Such an approach reduces load time and improves security. [all …]
|
/bionic/libc/kernel/uapi/linux/ |
D | fsl_hypervisor.h | 35 __u32 load; member
|
D | cdrom.h | 637 __u8 load : 1; member 647 __u8 load : 1; member
|
/bionic/libc/async_safe/ |
D | README.md | 8 a socket for each message does not scale well under load. It was also determined to be too
|
/bionic/libc/arch-arm/bionic/ |
D | __bionic_clone.S | 42 # load extra parameters
|
/bionic/benchmarks/linker_relocation/ |
D | README.md | 3 This benchmark measures the time spent in the dynamic linker to load a large set
|
/bionic/docs/ |
D | elf-tls.md | 159 object), then its offset from the TP is known at load-time. The variable can be accessed with a few 174 // allocated in the .got, resolved at load-time with a dynamic reloc. 216 * web search: [`"dlopen: cannot load any more object with static TLS"`][glibc-static-tls-error] 228 [glibc-static-tls-error]: https://www.google.com/search?q=%22dlopen:+cannot+load+any+more+object+wi… 639 * Android's "native bridge" system allows the Zygote to load an app solib of a non-native ABI. (For 640 example, it could be used to load an arm32 solib into an x86 Zygote.) The solib is translated 657 variant 2 TLS, we might need to change the compiler to emit a sign-extending load. 711 but that could change. (Clang [briefly used][D44355] load/store relocations, but it was reverted 719 `add` or a load/store instruction. 783 load-time, not link-time. If we can guarantee that Android's executables also use the IE model, not [all …]
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 472 while (thread_mask.load() != 0xffffffff) in TEST()
|
/bionic/linker/ |
D | linker.cpp | 594 bool load(address_space_params* address_space) { in load() function in LoadTask 1639 if (!task->load(address_space)) { in find_libraries()
|
/bionic/tests/libs/ |
D | Android.bp | 662 // Libraries used by dlfcn tests to verify correct load order:
|