/system/extras/simpleperf/scripts/ |
D | simpleperf_report_lib.py | 24 import ctypes as ct namespace 36 return ct.cast(p, ct.c_void_p).value is None 51 class SampleStruct(ct.Structure): 65 _fields_ = [('ip', ct.c_uint64), 66 ('pid', ct.c_uint32), 67 ('tid', ct.c_uint32), 68 ('_thread_comm', ct.c_char_p), 69 ('time', ct.c_uint64), 70 ('in_kernel', ct.c_uint32), 71 ('cpu', ct.c_uint32), [all …]
|
/system/bpfprogs/ |
D | time_in_state.c | 105 concurrent_val_t* ct = bpf_uid_concurrent_times_map_lookup_elem(&key); variable 106 if (!ct) { 109 ct = bpf_uid_concurrent_times_map_lookup_elem(&key); 111 if (ct) ct->active[nactive % CPUS_PER_ENTRY] += delta; 115 ct = bpf_uid_concurrent_times_map_lookup_elem(&key); 116 if (!ct) { 119 ct = bpf_uid_concurrent_times_map_lookup_elem(&key); 122 if (ct) ct->policy[policy_nactive % CPUS_PER_ENTRY] += delta;
|
/system/keymaster/include/keymaster/key_blob_utils/ |
D | ae.h | 95 int ad_len, void* ct, void* tag, int final); 124 int ae_decrypt(ae_ctx* ctx, const void* nonce, const void* ct, int ct_len, const void* ad,
|
/system/keymaster/key_blob_utils/ |
D | ocb.c | 939 int ad_len, void* ct, void* tag, int final) { in ae_encrypt() argument 947 block* ctp = (block*)ct; in ae_encrypt() 1120 memcpy((char*)ct + pt_len, &offset, OCB_TAG_LEN); in ae_encrypt() 1123 memcpy((char*)ct + pt_len, &offset, ctx->tag_len); in ae_encrypt() 1155 int ae_decrypt(ae_ctx* ctx, const void* nonce, const void* ct, int ct_len, const void* ad, in ae_decrypt() argument 1164 block* ctp = (block*)ct; in ae_decrypt() 1347 if (constant_time_memcmp((char*)ct + ct_len, tmp.u8, len) != 0) in ae_decrypt() 1385 ALIGN(16) char ct[144]; 1389 i = ae_encrypt(ctx,nonce,pt,len,pt,len,ct,NULL,AE_FINALIZE); 1390 printf("P=%d,A=%d: ",len,len); pbuf(ct, i, NULL); [all …]
|
/system/libbase/ |
D | result_test.cpp | 207 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() 209 string = ct.string; in ConstructorTracker() 211 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() 213 string = std::move(ct.string); in ConstructorTracker() 215 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() 217 string = ct.string; in operator =() 220 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() 222 string = std::move(ct.string); in operator =()
|
D | expected_test.cpp | 625 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() 627 string = ct.string; in ConstructorTracker() 629 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() 631 string = std::move(ct.string); in ConstructorTracker() 633 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() 635 string = ct.string; in operator =() 638 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() 640 string = std::move(ct.string); in operator =() 691 ConstructorTracker ct = "hello"; in TEST() local 692 exp_track e4(ct); in TEST()
|
/system/core/adb/tls/tests/ |
D | adb_ca_list_test.cpp | 97 uint8_t ct = 0; in TEST_F() local 128 sha += ct++; in TEST_F()
|
/system/core/libpixelflinger/ |
D | scanline.cpp | 128 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct); 129 extern "C" void scanline_col32cb16blend_neon(uint16_t *dst, uint32_t *col, size_t ct); 130 extern "C" void scanline_col32cb16blend_arm(uint16_t *dst, uint32_t col, size_t ct); 133 extern "C" void scanline_col32cb16blend_arm64(uint16_t *dst, uint32_t col, size_t ct); 138 extern "C" void scanline_col32cb16blend_mips64(uint16_t *dst, uint32_t col, size_t ct); 2091 size_t ct = c->iterators.xr - x; in scanline_col32cb16blend() local 2102 scanline_col32cb16blend_neon(dst, &(c->packed8888), ct); in scanline_col32cb16blend() 2104 scanline_col32cb16blend_arm(dst, GGL_RGBA_TO_HOST(c->packed8888), ct); in scanline_col32cb16blend() 2107 scanline_col32cb16blend_arm64(dst, GGL_RGBA_TO_HOST(c->packed8888), ct); in scanline_col32cb16blend() 2109 scanline_col32cb16blend_mips64(dst, GGL_RGBA_TO_HOST(c->packed8888), ct); in scanline_col32cb16blend() [all …]
|
D | trap.cpp | 452 size_t ct = c->iterators.xr - x; in scanline_set() local 458 const size_t size = ct * fp->size; in scanline_set()
|
/system/ca-certificates/files/ |
D | 343eb6cb.0 | 67 URI:http://www2.public-trust.com/crl/ct/ctroot.crl
|
/system/ca-certificates/google/files/ |
D | 343eb6cb.0 | 67 URI:http://www2.public-trust.com/crl/ct/ctroot.crl
|
/system/tools/hidl/ |
D | CompoundType.cpp | 208 const CompoundType* ct = static_cast<const CompoundType*>(&t); in containsInterface() local 209 if (ct->containsInterface()) { in containsInterface()
|