/external/valgrind/memcheck/tests/ |
D | deep-backtrace.c | 1 int f1(int *p) { return *p; } in f1() 2 int f2(int *p) { return f1(p); } in f2() 3 int f3(int *p) { return f2(p); } in f3() 4 int f4(int *p) { return f3(p); } in f4() 5 int f5(int *p) { return f4(p); } in f5() 6 int f6(int *p) { return f5(p); } in f6() 7 int f7(int *p) { return f6(p); } in f7() 8 int f8(int *p) { return f7(p); } in f8() 9 int f9(int *p) { return f8(p); } in f9() 10 int f10(int *p) { return f9(p); } in f10() [all …]
|
/external/ply/ply/example/BASIC/ |
D | basparse.py | 20 def p_program(p): argument 40 def p_program_error(p): argument 48 def p_statement(p): argument 61 def p_statement_interactive(p): argument 70 def p_statement_blank(p): argument 77 def p_statement_bad(p): argument 86 def p_statement_newline(p): argument 93 def p_command_let(p): argument 98 def p_command_let_bad(p): argument 105 def p_command_read(p): argument [all …]
|
/external/tcpdump/ |
D | extract.h | 92 EXTRACT_16BITS(const void *p) in EXTRACT_16BITS() 98 EXTRACT_32BITS(const void *p) in EXTRACT_32BITS() 104 EXTRACT_64BITS(const void *p) in EXTRACT_64BITS() 118 #define EXTRACT_16BITS(p) \ argument 121 #define EXTRACT_32BITS(p) \ argument 126 #define EXTRACT_64BITS(p) \ argument 142 EXTRACT_16BITS(const void *p) in EXTRACT_16BITS() 148 EXTRACT_32BITS(const void *p) in EXTRACT_32BITS() 154 EXTRACT_64BITS(const void *p) in EXTRACT_64BITS() 163 #define EXTRACT_24BITS(p) \ argument [all …]
|
/external/ply/ply/example/yply/ |
D | yparse.py | 17 def p_yacc(p): argument 21 def p_defsection(p): argument 33 def p_rulesection(p): argument 40 def p_definitions(p): argument 45 def p_definition_literal(p): argument 50 def p_definition_start(p): argument 55 def p_definition_token(p): argument 68 def p_toktype(p): argument 76 def p_opttype(p): argument 81 def p_idlist(p): argument [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | refparser.py | 321 def p_statements(p): argument 331 def p_statement(p): argument 341 def p_empty(p): argument 352 def p_policy_module_stmt(p): argument 360 def p_interface(p): argument 367 def p_template(p): argument 375 def p_define(p): argument 382 def p_interface_stmts(p): argument 398 def p_optional_policy(p): argument 408 def p_tunable_policy(p): argument [all …]
|
/external/clang/test/CodeGen/ |
D | atomic-ops-libcall.c | 8 int *test_c11_atomic_fetch_add_int_ptr(_Atomic(int *) *p) { in test_c11_atomic_fetch_add_int_ptr() 14 int *test_c11_atomic_fetch_sub_int_ptr(_Atomic(int *) *p) { in test_c11_atomic_fetch_sub_int_ptr() 20 int test_c11_atomic_fetch_add_int(_Atomic(int) *p) { in test_c11_atomic_fetch_add_int() 26 int test_c11_atomic_fetch_sub_int(_Atomic(int) *p) { in test_c11_atomic_fetch_sub_int() 32 int *fp2a(int **p) { in fp2a() 39 int test_atomic_fetch_add(int *p) { in test_atomic_fetch_add() 45 int test_atomic_fetch_sub(int *p) { in test_atomic_fetch_sub() 51 int test_atomic_fetch_and(int *p) { in test_atomic_fetch_and() 57 int test_atomic_fetch_or(int *p) { in test_atomic_fetch_or() 63 int test_atomic_fetch_xor(int *p) { in test_atomic_fetch_xor() [all …]
|
/external/libpcap/ |
D | extract.h | 96 EXTRACT_16BITS(const void *p) in EXTRACT_16BITS() 102 EXTRACT_32BITS(const void *p) in EXTRACT_32BITS() 108 EXTRACT_64BITS(const void *p) in EXTRACT_64BITS() 122 #define EXTRACT_16BITS(p) \ argument 125 #define EXTRACT_32BITS(p) \ argument 130 #define EXTRACT_64BITS(p) \ argument 146 EXTRACT_16BITS(const void *p) in EXTRACT_16BITS() 152 EXTRACT_32BITS(const void *p) in EXTRACT_32BITS() 158 EXTRACT_64BITS(const void *p) in EXTRACT_64BITS() 167 #define EXTRACT_24BITS(p) \ argument [all …]
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/ |
D | parser.py | 73 def p_root_1(self, p): argument 77 def p_root_2(self, p): argument 91 def p_root_3(self, p): argument 100 def p_root_4(self, p): argument 105 def p_import(self, p): argument 111 def p_module(self, p): argument 115 def p_definition(self, p): argument 123 def p_attribute_section_1(self, p): argument 127 def p_attribute_section_2(self, p): argument 131 def p_attribute_list_1(self, p): argument [all …]
|
/external/jemalloc/include/jemalloc/internal/ |
D | atomic.h | 12 #define atomic_read_uint64(p) atomic_add_uint64(p, 0) argument 13 #define atomic_read_uint32(p) atomic_add_uint32(p, 0) argument 14 #define atomic_read_p(p) atomic_add_p(p, NULL) argument 15 #define atomic_read_z(p) atomic_add_z(p, 0) argument 16 #define atomic_read_u(p) atomic_add_u(p, 0) argument 72 atomic_add_uint64(uint64_t *p, uint64_t x) in atomic_add_uint64() 86 atomic_sub_uint64(uint64_t *p, uint64_t x) in atomic_sub_uint64() 102 atomic_cas_uint64(uint64_t *p, uint64_t c, uint64_t s) in atomic_cas_uint64() 118 atomic_write_uint64(uint64_t *p, uint64_t x) in atomic_write_uint64() 130 atomic_add_uint64(uint64_t *p, uint64_t x) in atomic_add_uint64() [all …]
|
/external/mesa3d/src/mesa/x86/rtasm/ |
D | x86sse.c | 20 static void do_realloc( struct x86_function *p ) in do_realloc() 40 static unsigned char *reserve( struct x86_function *p, int bytes ) in reserve() 54 static void emit_1b( struct x86_function *p, char b0 ) in emit_1b() 60 static void emit_1i( struct x86_function *p, int i0 ) in emit_1i() 66 static void emit_1ub( struct x86_function *p, unsigned char b0 ) in emit_1ub() 72 static void emit_2ub( struct x86_function *p, unsigned char b0, unsigned char b1 ) in emit_2ub() 79 static void emit_3ub( struct x86_function *p, unsigned char b0, unsigned char b1, unsigned char b2 ) in emit_3ub() 91 static void emit_modrm( struct x86_function *p, in emit_modrm() 129 static void emit_modrm_noreg( struct x86_function *p, in emit_modrm_noreg() 142 static void emit_op_modrm( struct x86_function *p, in emit_op_modrm() [all …]
|
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
D | rtasm_x86sse.c | 140 static void do_realloc( struct x86_function *p ) in do_realloc() 175 static unsigned char *reserve( struct x86_function *p, int bytes ) in reserve() 189 static void emit_1b( struct x86_function *p, char b0 ) in emit_1b() 195 static void emit_1i( struct x86_function *p, int i0 ) in emit_1i() 201 static void emit_1ub( struct x86_function *p, unsigned char b0 ) in emit_1ub() 207 static void emit_2ub( struct x86_function *p, unsigned char b0, unsigned char b1 ) in emit_2ub() 214 static void emit_3ub( struct x86_function *p, unsigned char b0, unsigned char b1, unsigned char b2 ) in emit_3ub() 228 static void emit_modrm( struct x86_function *p, in emit_modrm() 272 static void emit_modrm_noreg( struct x86_function *p, in emit_modrm_noreg() 285 static void emit_op_modrm( struct x86_function *p, in emit_op_modrm() [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/ |
D | pos_format.pass.cpp | 65 std::money_base::pattern p = f.pos_format(); in main() local 73 std::money_base::pattern p = f.pos_format(); in main() local 81 std::money_base::pattern p = f.pos_format(); in main() local 89 std::money_base::pattern p = f.pos_format(); in main() local 98 std::money_base::pattern p = f.pos_format(); in main() local 106 std::money_base::pattern p = f.pos_format(); in main() local 114 std::money_base::pattern p = f.pos_format(); in main() local 122 std::money_base::pattern p = f.pos_format(); in main() local 131 std::money_base::pattern p = f.pos_format(); in main() local 139 std::money_base::pattern p = f.pos_format(); in main() local [all …]
|
D | neg_format.pass.cpp | 65 std::money_base::pattern p = f.neg_format(); in main() local 73 std::money_base::pattern p = f.neg_format(); in main() local 81 std::money_base::pattern p = f.neg_format(); in main() local 89 std::money_base::pattern p = f.neg_format(); in main() local 98 std::money_base::pattern p = f.neg_format(); in main() local 106 std::money_base::pattern p = f.neg_format(); in main() local 114 std::money_base::pattern p = f.neg_format(); in main() local 122 std::money_base::pattern p = f.neg_format(); in main() local 131 std::money_base::pattern p = f.neg_format(); in main() local 139 std::money_base::pattern p = f.neg_format(); in main() local [all …]
|
/external/ImageMagick/coders/ |
D | cmyk.c | 222 *magick_restrict p; in ReadCMYKImage() local 305 *magick_restrict p; in ReadCMYKImage() local 405 *magick_restrict p; in ReadCMYKImage() local 458 *magick_restrict p; in ReadCMYKImage() local 511 *magick_restrict p; in ReadCMYKImage() local 564 *magick_restrict p; in ReadCMYKImage() local 619 *magick_restrict p; in ReadCMYKImage() local 713 *magick_restrict p; in ReadCMYKImage() local 790 *magick_restrict p; in ReadCMYKImage() local 866 *magick_restrict p; in ReadCMYKImage() local [all …]
|
D | rgb.c | 227 *magick_restrict p; in ReadRGBImage() local 309 *magick_restrict p; in ReadRGBImage() local 408 *magick_restrict p; in ReadRGBImage() local 460 *magick_restrict p; in ReadRGBImage() local 512 *magick_restrict p; in ReadRGBImage() local 572 *magick_restrict p; in ReadRGBImage() local 665 *magick_restrict p; in ReadRGBImage() local 741 *magick_restrict p; in ReadRGBImage() local 817 *magick_restrict p; in ReadRGBImage() local 895 *magick_restrict p; in ReadRGBImage() local [all …]
|
D | bgr.c | 228 *magick_restrict p; in ReadBGRImage() local 309 *magick_restrict p; in ReadBGRImage() local 409 *magick_restrict p; in ReadBGRImage() local 462 *magick_restrict p; in ReadBGRImage() local 515 *magick_restrict p; in ReadBGRImage() local 576 *magick_restrict p; in ReadBGRImage() local 670 *magick_restrict p; in ReadBGRImage() local 747 *magick_restrict p; in ReadBGRImage() local 824 *magick_restrict p; in ReadBGRImage() local 903 *magick_restrict p; in ReadBGRImage() local [all …]
|
/external/swiftshader/include/Direct3D/ |
D | d3d8.h | 191 #define IDirect3D8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) argument 192 #define IDirect3D8_AddRef(p) (p)->lpVtbl->AddRef(p) argument 193 #define IDirect3D8_Release(p) (p)->lpVtbl->Release(p) argument 194 #define IDirect3D8_RegisterSoftwareDevice(p,a) (p)->lpVtbl->RegisterSoftwareDevice(p,a) argument 195 #define IDirect3D8_GetAdapterCount(p) (p)->lpVtbl->GetAdapterCount(p) argument 196 #define IDirect3D8_GetAdapterIdentifier(p,a,b,c) (p)->lpVtbl->GetAdapterIdentifier(p,a,b,c) argument 197 #define IDirect3D8_GetAdapterModeCount(p,a) (p)->lpVtbl->GetAdapterModeCount(p,a) argument 198 #define IDirect3D8_EnumAdapterModes(p,a,b,c) (p)->lpVtbl->EnumAdapterModes(p,a,b,c) argument 199 #define IDirect3D8_GetAdapterDisplayMode(p,a,b) (p)->lpVtbl->GetAdapterDisplayMode(p,a,b) argument 200 #define IDirect3D8_CheckDeviceType(p,a,b,c,d,e) (p)->lpVtbl->CheckDeviceType(p,a,b,c,d,e) argument [all …]
|
/external/lzma/C/ |
D | Threads.h | 19 #define Thread_Construct(p) *(p) = NULL argument 20 #define Thread_WasCreated(p) (*(p) != NULL) argument 21 #define Thread_Close(p) HandlePtr_Close(p) argument 22 #define Thread_Wait(p) Handle_WaitObject(*(p)) argument 40 #define Event_Construct(p) *(p) = NULL argument 41 #define Event_IsCreated(p) (*(p) != NULL) argument 42 #define Event_Close(p) HandlePtr_Close(p) argument 43 #define Event_Wait(p) Handle_WaitObject(*(p)) argument 52 #define Semaphore_Construct(p) (*p) = NULL argument 53 #define Semaphore_Close(p) HandlePtr_Close(p) argument [all …]
|
D | MtCoder.c | 8 void LoopThread_Construct(CLoopThread *p) in LoopThread_Construct() 15 void LoopThread_Close(CLoopThread *p) in LoopThread_Close() 24 CLoopThread *p = (CLoopThread *)pp; in LoopThreadFunc() local 37 WRes LoopThread_Create(CLoopThread *p) in LoopThread_Create() 45 WRes LoopThread_StopAndWait(CLoopThread *p) in LoopThread_StopAndWait() 53 WRes LoopThread_StartSubThread(CLoopThread *p) { return Event_Set(&p->startEvent); } in LoopThread_StartSubThread() 54 WRes LoopThread_WaitSubThread(CLoopThread *p) { return Event_Wait(&p->finishedEvent); } in LoopThread_WaitSubThread() 56 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) in Progress() 61 static void MtProgress_Init(CMtProgress *p, ICompressProgress *progress) in MtProgress_Init() 71 static void MtProgress_Reinit(CMtProgress *p, unsigned index) in MtProgress_Reinit() [all …]
|
/external/syslinux/com32/tools/include/tools/ |
D | le_byteshift.h | 6 static inline __u16 __get_unaligned_le16(const __u8 *p) in __get_unaligned_le16() 11 static inline __u32 __get_unaligned_le32(const __u8 *p) in __get_unaligned_le32() 16 static inline __u64 __get_unaligned_le64(const __u8 *p) in __get_unaligned_le64() 22 static inline void __put_unaligned_le16(__u16 val, __u8 *p) in __put_unaligned_le16() 28 static inline void __put_unaligned_le32(__u32 val, __u8 *p) in __put_unaligned_le32() 34 static inline void __put_unaligned_le64(__u64 val, __u8 *p) in __put_unaligned_le64() 40 static inline __u16 get_unaligned_le16(const void *p) in get_unaligned_le16() 45 static inline __u32 get_unaligned_le32(const void *p) in get_unaligned_le32() 50 static inline __u64 get_unaligned_le64(const void *p) in get_unaligned_le64() 55 static inline void put_unaligned_le16(__u16 val, void *p) in put_unaligned_le16() [all …]
|
/external/libcxx/test/std/thread/futures/futures.unique_future/ |
D | get.pass.cpp | 26 void func1(std::promise<int> p) in func1() 32 void func2(std::promise<int> p) in func2() 40 void func3(std::promise<int&> p) in func3() 47 void func4(std::promise<int&> p) in func4() 53 void func5(std::promise<void> p) in func5() 59 void func6(std::promise<void> p) in func6() 70 std::promise<T> p; in main() local 79 std::promise<T> p; in main() local 99 std::promise<T> p; in main() local 108 std::promise<T> p; in main() local [all …]
|
/external/libcxx/test/std/thread/futures/futures.shared_future/ |
D | get.pass.cpp | 26 void func1(std::promise<int> p) in func1() 32 void func2(std::promise<int> p) in func2() 40 void func3(std::promise<int&> p) in func3() 47 void func4(std::promise<int&> p) in func4() 53 void func5(std::promise<void> p) in func5() 59 void func6(std::promise<void> p) in func6() 70 std::promise<T> p; in main() local 79 std::promise<T> p; in main() local 99 std::promise<T> p; in main() local 108 std::promise<T> p; in main() local [all …]
|
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/ |
D | SSLParametersTest.java | 44 SSLParameters p = new SSLParameters(); in test_SSLParameters_emptyConstructor() local 54 SSLParameters p = new SSLParameters(cipherSuites); in test_SSLParameters_cipherSuitesConstructor() local 67 SSLParameters p = new SSLParameters(cipherSuites, protocols); in test_SSLParameters_cpherSuitesProtocolsConstructor() local 80 SSLParameters p = new SSLParameters(); in test_SSLParameters_CipherSuites() local 96 SSLParameters p = new SSLParameters(); in test_SSLParameters_Protocols() local 112 SSLParameters p = new SSLParameters(); in test_SSLParameters_ClientAuth() local 134 SSLParameters p = new SSLParameters(); in test_SSLParameters_setServerNames_duplicatedNameThrows() local 148 SSLParameters p = new SSLParameters(); in test_SSLParameters_setServerNames_setNull_getNull() local 157 SSLParameters p = new SSLParameters(); in test_SSLParameters_setServerNames_setEmpty_getEmpty() local 166 SSLParameters p = new SSLParameters(); in test_SSLParameters_getServerNames_unmodifiable() local [all …]
|
/external/mesa3d/include/D3D9/ |
D | d3d9.h | 467 #define IDirect3D9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) argument 468 #define IDirect3D9_AddRef(p) (p)->lpVtbl->AddRef(p) argument 469 #define IDirect3D9_Release(p) (p)->lpVtbl->Release(p) argument 471 #define IDirect3D9_RegisterSoftwareDevice(p,a) (p)->lpVtbl->RegisterSoftwareDevice(p,a) argument 472 #define IDirect3D9_GetAdapterCount(p) (p)->lpVtbl->GetAdapterCount(p) argument 473 #define IDirect3D9_GetAdapterIdentifier(p,a,b,c) (p)->lpVtbl->GetAdapterIdentifier(p,a,b,c) argument 474 #define IDirect3D9_GetAdapterModeCount(p,a,b) (p)->lpVtbl->GetAdapterModeCount(p,a,b) argument 475 #define IDirect3D9_EnumAdapterModes(p,a,b,c,d) (p)->lpVtbl->EnumAdapterModes(p,a,b,c,d) argument 476 #define IDirect3D9_GetAdapterDisplayMode(p,a,b) (p)->lpVtbl->GetAdapterDisplayMode(p,a,b) argument 477 #define IDirect3D9_CheckDeviceType(p,a,b,c,d,e) (p)->lpVtbl->CheckDeviceType(p,a,b,c,d,e) argument [all …]
|
/external/libcxx/test/std/language.support/support.exception/propagation/ |
D | current_exception.pass.cpp | 32 std::exception_ptr p = std::current_exception(); in main() local 59 std::exception_ptr p = std::current_exception(); in main() local 79 std::exception_ptr p = std::current_exception(); in main() local 99 std::exception_ptr p = std::current_exception(); in main() local 146 std::exception_ptr p = std::current_exception(); in main() local 179 std::exception_ptr p = std::current_exception(); in main() local 208 std::exception_ptr p = std::current_exception(); in main() local 237 std::exception_ptr p = std::current_exception(); in main() local 243 std::exception_ptr p; in main() local
|