/external/clang/test/Index/ |
D | nested-binaryoperators.cpp | 2 int foo(uint c) { in foo() argument 3 return ((c >= 0x41 && c <= 0x5a) in foo() 4 || (c >= 0x61 && c <= 0x7a) in foo() 5 || (c >= 0xc0 && c <= 0xd6) in foo() 6 || (c >= 0xd8 && c <= 0xf6) in foo() 7 || (c >= 0xf8 && c <= 0xff) in foo() 8 || (c >= 0x100 && c <= 0x131) in foo() 9 || (c >= 0x134 && c <= 0x13e) in foo() 10 || (c >= 0x141 && c <= 0x148) in foo() 11 || (c >= 0x14a && c <= 0x17e) in foo() [all …]
|
/external/tcpdump/ |
D | Android.mk | 4 tcpdump_CSRC = addrtoname.c af.c checksum.c cpack.c gmpls.c oui.c gmt2local.c ipproto.c \ 5 nlpid.c l2vpn.c machdep.c parsenfsfh.c in_cksum.c \ 6 print-802_11.c print-802_15_4.c print-ap1394.c print-ah.c \ 7 print-arcnet.c print-aodv.c print-arp.c print-ascii.c print-atalk.c \ 8 print-atm.c print-beep.c print-bfd.c print-bgp.c \ 9 print-bootp.c print-bt.c print-calm-fast.c print-carp.c print-cdp.c print-cfm.c \ 10 print-chdlc.c print-cip.c print-cnfp.c print-dccp.c print-decnet.c \ 11 print-domain.c print-dtp.c print-dvmrp.c print-enc.c print-egp.c \ 12 print-eap.c print-eigrp.c\ 13 print-esp.c print-ether.c print-fddi.c print-forces.c print-fr.c \ [all …]
|
/external/bison/lib/ |
D | c-ctype.c | 27 c_isascii (int c) in c_isascii() argument 29 return (c >= 0x00 && c <= 0x7f); in c_isascii() 33 c_isalnum (int c) in c_isalnum() argument 38 return ((c >= '0' && c <= '9') in c_isalnum() 39 || ((c & ~0x20) >= 'A' && (c & ~0x20) <= 'Z')); in c_isalnum() 41 return ((c >= '0' && c <= '9') in c_isalnum() 42 || (c >= 'A' && c <= 'Z') in c_isalnum() 43 || (c >= 'a' && c <= 'z')); in c_isalnum() 46 switch (c) in c_isalnum() 68 c_isalpha (int c) in c_isalpha() argument [all …]
|
/external/chromium_org/native_client_sdk/src/libraries/pthread/ |
D | library.dsc | 11 'autostatic.c', 12 'cleanup.c', 13 'create.c', 14 'errno.c', 15 'fork.c', 16 'global.c', 17 'pthread_attr_destroy.c', 18 'pthread_attr_getdetachstate.c', 19 'pthread_attr_getinheritsched.c', 20 'pthread_attr_getschedparam.c', [all …]
|
/external/mesa3d/src/gallium/auxiliary/ |
D | Makefile.sources | 4 cso_cache/cso_cache.c \ 5 cso_cache/cso_context.c \ 6 cso_cache/cso_hash.c \ 7 draw/draw_context.c \ 8 draw/draw_fs.c \ 9 draw/draw_gs.c \ 10 draw/draw_pipe.c \ 11 draw/draw_pipe_aaline.c \ 12 draw/draw_pipe_aapoint.c \ 13 draw/draw_pipe_clip.c \ [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/ |
D | Makefile.sources | 4 cso_cache/cso_cache.c \ 5 cso_cache/cso_context.c \ 6 cso_cache/cso_hash.c \ 7 draw/draw_context.c \ 8 draw/draw_fs.c \ 9 draw/draw_gs.c \ 10 draw/draw_pipe.c \ 11 draw/draw_pipe_aaline.c \ 12 draw/draw_pipe_aapoint.c \ 13 draw/draw_pipe_clip.c \ [all …]
|
/external/libcxx/test/re/re.traits/ |
D | value.pass.cpp | 24 for (char c = 0; c < '0'; ++c) in main() local 26 assert(t.value(c, 8) == -1); in main() 27 assert(t.value(c, 10) == -1); in main() 28 assert(t.value(c, 16) == -1); in main() 30 for (char c = '0'; c < '8'; ++c) in main() local 32 assert(t.value(c, 8) == c - '0'); in main() 33 assert(t.value(c, 10) == c - '0'); in main() 34 assert(t.value(c, 16) == c - '0'); in main() 36 for (char c = '8'; c < ':'; ++c) in main() local 38 assert(t.value(c, 8) == -1); in main() [all …]
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | simplifypathwithabsoluteprefixtests.txt | 1 /b/c/aaaaaaaaaa /b/c/aaaaaaaaaa 2 /b/c/aaaaaaaaa. /b/c/aaaaaaaaa. 3 /b/c/aaaaaaaaa/ /b/c/aaaaaaaaa 4 /b/c/aaaaaaaa.a /b/c/aaaaaaaa.a 5 /b/c/aaaaaaaa.. /b/c/aaaaaaaa.. 6 /b/c/aaaaaaaa./ /b/c/aaaaaaaa. 7 /b/c/aaaaaaaa/a /b/c/aaaaaaaa/a 8 /b/c/aaaaaaaa/. /b/c/aaaaaaaa 9 /b/c/aaaaaaaa// /b/c/aaaaaaaa 10 /b/c/aaaaaaa.aa /b/c/aaaaaaa.aa [all …]
|
/external/elfutils/0.153/libelf/ |
D | Android.mk | 29 elf32_checksum.c \ 30 elf32_fsize.c \ 31 elf32_getehdr.c \ 32 elf32_getphdr.c \ 33 elf32_getshdr.c \ 34 elf32_newehdr.c \ 35 elf32_newphdr.c \ 36 elf32_offscn.c \ 37 elf32_updatenull.c \ 38 elf32_xlatetof.c \ [all …]
|
D | Makefile.am | 43 libelf_a_SOURCES = elf_version.c elf_hash.c elf_error.c elf_fill.c \ 44 elf_begin.c elf_next.c elf_rand.c elf_end.c elf_kind.c \ 45 gelf_getclass.c elf_getbase.c elf_getident.c \ 46 elf32_fsize.c elf64_fsize.c gelf_fsize.c \ 47 elf32_xlatetof.c elf32_xlatetom.c elf64_xlatetof.c \ 48 elf64_xlatetom.c gelf_xlate.c \ 49 elf32_getehdr.c elf64_getehdr.c gelf_getehdr.c \ 50 elf32_newehdr.c elf64_newehdr.c gelf_newehdr.c \ 51 gelf_update_ehdr.c \ 52 elf32_getphdr.c elf64_getphdr.c gelf_getphdr.c \ [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | Makefile.sources | 6 intel_batchbuffer.c \ 7 intel_blit.c \ 8 intel_buffer_objects.c \ 9 intel_buffers.c \ 10 intel_context.c \ 11 intel_extensions.c \ 12 intel_fbo.c \ 13 intel_mipmap_tree.c \ 14 intel_regions.c \ 15 intel_resolve_map.c \ [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | Makefile.sources | 6 intel_batchbuffer.c \ 7 intel_blit.c \ 8 intel_buffer_objects.c \ 9 intel_buffers.c \ 10 intel_context.c \ 11 intel_extensions.c \ 12 intel_fbo.c \ 13 intel_mipmap_tree.c \ 14 intel_regions.c \ 15 intel_resolve_map.c \ [all …]
|
/external/libopus/ |
D | silk_sources.mk | 2 silk/CNG.c \ 3 silk/code_signs.c \ 4 silk/init_decoder.c \ 5 silk/decode_core.c \ 6 silk/decode_frame.c \ 7 silk/decode_parameters.c \ 8 silk/decode_indices.c \ 9 silk/decode_pulses.c \ 10 silk/decoder_set_fs.c \ 11 silk/dec_API.c \ [all …]
|
D | Android.mk | 8 LOCAL_SRC_FILES := celt/bands.c \ 9 celt/celt.c \ 10 celt/celt_decoder.c \ 11 celt/celt_encoder.c \ 12 celt/celt_lpc.c \ 13 celt/cwrs.c \ 14 celt/entcode.c \ 15 celt/entdec.c \ 16 celt/entenc.c \ 17 celt/kiss_fft.c \ [all …]
|
/external/chromium_org/third_party/opus/src/ |
D | silk_sources.mk | 2 silk/CNG.c \ 3 silk/code_signs.c \ 4 silk/init_decoder.c \ 5 silk/decode_core.c \ 6 silk/decode_frame.c \ 7 silk/decode_parameters.c \ 8 silk/decode_indices.c \ 9 silk/decode_pulses.c \ 10 silk/decoder_set_fs.c \ 11 silk/dec_API.c \ [all …]
|
/external/libunwind/src/ia64/ |
D | init.h | 29 common_init (struct cursor *c, unw_word_t sp, unw_word_t bsp) in common_init() argument 34 if (c->as->caching_policy != UNW_CACHE_NONE) in common_init() 36 ia64_validate_cache (c->as, c->as_arg); in common_init() 38 c->cfm_loc = IA64_REG_LOC (c, UNW_IA64_CFM); in common_init() 39 c->loc[IA64_REG_BSP] = IA64_NULL_LOC; in common_init() 40 c->loc[IA64_REG_BSPSTORE] = IA64_REG_LOC (c, UNW_IA64_AR_BSPSTORE); in common_init() 41 c->loc[IA64_REG_PFS] = IA64_REG_LOC (c, UNW_IA64_AR_PFS); in common_init() 42 c->loc[IA64_REG_RNAT] = IA64_REG_LOC (c, UNW_IA64_AR_RNAT); in common_init() 43 c->loc[IA64_REG_IP] = IA64_REG_LOC (c, UNW_IA64_IP); in common_init() 44 c->loc[IA64_REG_PRI_UNAT_MEM] = IA64_NULL_LOC; /* no primary UNaT location */ in common_init() [all …]
|
/external/openssl/ |
D | Crypto-config-target.mk | 22 crypto/aes/aes_cbc.c \ 23 crypto/aes/aes_cfb.c \ 24 crypto/aes/aes_core.c \ 25 crypto/aes/aes_ctr.c \ 26 crypto/aes/aes_ecb.c \ 27 crypto/aes/aes_misc.c \ 28 crypto/aes/aes_ofb.c \ 29 crypto/aes/aes_wrap.c \ 30 crypto/asn1/a_bitstr.c \ 31 crypto/asn1/a_bool.c \ [all …]
|
D | Crypto-config-host.mk | 22 crypto/aes/aes_cbc.c \ 23 crypto/aes/aes_cfb.c \ 24 crypto/aes/aes_core.c \ 25 crypto/aes/aes_ctr.c \ 26 crypto/aes/aes_ecb.c \ 27 crypto/aes/aes_misc.c \ 28 crypto/aes/aes_ofb.c \ 29 crypto/aes/aes_wrap.c \ 30 crypto/asn1/a_bitstr.c \ 31 crypto/asn1/a_bool.c \ [all …]
|
/external/elfutils/0.153/libdw/ |
D | Android.mk | 29 cfi.c \ 30 cie.c \ 31 dwarf_abbrevhaschildren.c \ 32 dwarf_abbrev_hash.c \ 33 dwarf_addrdie.c \ 34 dwarf_arrayorder.c \ 35 dwarf_attr.c \ 36 dwarf_attr_integrate.c \ 37 dwarf_begin.c \ 38 dwarf_begin_elf.c \ [all …]
|
/external/fdlibm/ |
D | Android.mk | 22 k_standard.c k_rem_pio2.c \ 23 k_cos.c k_sin.c k_tan.c \ 24 e_acos.c e_acosh.c e_asin.c e_atan2.c \ 25 e_atanh.c e_cosh.c e_exp.c e_fmod.c \ 26 e_gamma.c e_gamma_r.c e_hypot.c e_j0.c \ 27 e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c \ 28 e_log.c e_log10.c e_pow.c e_rem_pio2.c e_remainder.c \ 29 e_scalb.c e_sinh.c e_sqrt.c \ 30 w_acos.c w_acosh.c w_asin.c w_atan2.c \ 31 w_atanh.c w_cosh.c w_exp.c w_fmod.c \ [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/passwin64/ |
D | dwarfwin64_testhd.hex | 41 1c 197 4c 286 0c 322 0c 365 5c 543 6c 548 5c 554 4c 597 1c 601 6c [all …]
|
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/ |
D | erase_after_many.pass.cpp | 25 C c(std::begin(t), std::end(t)); in main() local 27 C::iterator i = c.erase_after(next(c.cbefore_begin(), 4), next(c.cbefore_begin(), 4)); in main() 28 assert(i == next(c.cbefore_begin(), 4)); in main() 29 assert(distance(c.begin(), c.end()) == 10); in main() 30 assert(*next(c.begin(), 0) == 0); in main() 31 assert(*next(c.begin(), 1) == 1); in main() 32 assert(*next(c.begin(), 2) == 2); in main() 33 assert(*next(c.begin(), 3) == 3); in main() 34 assert(*next(c.begin(), 4) == 4); in main() 35 assert(*next(c.begin(), 5) == 5); in main() [all …]
|
/external/libgsm/src/ |
D | gsm_print.c | 16 int gsm_print P3((f, s, c), FILE * f, gsm s, gsm_byte * c) 22 if (((*c >> 4) & 0x0F) != GSM_MAGIC) return -1; 24 LARc[0] = (*c++ & 0xF) << 2; /* 1 */ 25 LARc[0] |= (*c >> 6) & 0x3; 26 LARc[1] = *c++ & 0x3F; 27 LARc[2] = (*c >> 3) & 0x1F; 28 LARc[3] = (*c++ & 0x7) << 2; 29 LARc[3] |= (*c >> 6) & 0x3; 30 LARc[4] = (*c >> 2) & 0xF; 31 LARc[5] = (*c++ & 0x3) << 2; [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass64/ |
D | dwarf64_leb128.hex | 3 4c 42 5c 275 5c 280 6c 286 4c 311 0c 340 0c 396 1c 400 6c 403 4c [all …]
|
/external/libunwind/src/aarch64/ |
D | init.h | 29 common_init (struct cursor *c, unsigned use_prev_instr) in common_init() argument 33 c->dwarf.loc[UNW_AARCH64_X0] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X0); in common_init() 34 c->dwarf.loc[UNW_AARCH64_X1] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X1); in common_init() 35 c->dwarf.loc[UNW_AARCH64_X2] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X2); in common_init() 36 c->dwarf.loc[UNW_AARCH64_X3] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X3); in common_init() 37 c->dwarf.loc[UNW_AARCH64_X4] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X4); in common_init() 38 c->dwarf.loc[UNW_AARCH64_X5] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X5); in common_init() 39 c->dwarf.loc[UNW_AARCH64_X6] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X6); in common_init() 40 c->dwarf.loc[UNW_AARCH64_X7] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X7); in common_init() 41 c->dwarf.loc[UNW_AARCH64_X8] = DWARF_REG_LOC (&c->dwarf, UNW_AARCH64_X8); in common_init() [all …]
|