Searched refs:model (Results 1 – 5 of 5) sorted by relevance
/bionic/tests/ |
D | bionic_allocator_test.cpp | 81 uint32_t model[1000]; in TEST() local 83 model[0] = 1; in TEST() 84 model[1] = 1; in TEST() 87 model[i] = model[i - 1] + model[i - 2]; in TEST() 90 memcpy(array, model, array_size); in TEST() 97 ASSERT_TRUE(memcmp(reallocated_ptr, model, array_size) == 0); in TEST() 101 memcpy(array, model, 2*array_size); in TEST() 113 ASSERT_TRUE(memcmp(reallocated_ptr, model, array_size * 2) == 0); in TEST() 117 memcpy(array, model, 4000); in TEST() 125 ASSERT_TRUE(memcmp(reallocated_ptr, model, 4000) == 0); in TEST()
|
/bionic/libc/kernel/uapi/linux/ |
D | virtio_blk.h | 65 __u8 model; member
|
D | media.h | 13 char model[32]; member
|
D | hdreg.h | 308 unsigned char model[40]; member
|
/bionic/docs/ |
D | elf-tls.md | 58 address using a TLS "access model". The access models trade generality against efficiency. The four 199 The compiler selects an access model for each variable reference using these factors: 202 * The per-file default can be overridden with `-ftls-model=<model>`. 205 efficient model than the one specified. 209 Shared objects are sometimes compiled with `-ftls-model=initial-exec` (i.e. "static TLS") for better 681 writes TP-relative offsets for IE/LE-model accesses. Clang doesn't tell the linker to target 709 GCC for arm64 defaults to the 24-bit model and has an `-mtls-size=SIZE` option for setting other 710 supported sizes. (It supports 12, 24, 32, and 48.) Clang has only implemented the 24-bit model, 718 The 24-bit model uses `add` to set the high 12 bits, then places the low 12 bits into another 781 is located at a statically-known offset from the TP (i.e. it uses the LE model). An initially-loaded [all …]
|