Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 8493) sorted by relevance

12345678910>>...340

/external/clang/test/Index/
Dnested-binaryoperators.cpp2 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/python/cpython2/Tools/pybench/
DArithmetic.py15 c = 3
17 c = a + b
18 c = b + c
19 c = c + a
20 c = a + b
21 c = b + c
23 c = c - a
24 c = a - b
25 c = b - c
26 c = c - a
[all …]
/external/python/cpython3/Tools/pybench/
DArithmetic.py15 c = 3
17 c = a + b
18 c = b + c
19 c = c + a
20 c = a + b
21 c = b + c
23 c = c - a
24 c = a - b
25 c = b - c
26 c = c - a
[all …]
DLookups.py11 class c: class
16 c.__a = 2
17 c.__b = 3
18 c.__c = 4
20 c.__a = 2
21 c.__b = 3
22 c.__c = 4
24 c.__a = 2
25 c.__b = 3
26 c.__c = 4
[all …]
/external/tpm2/
DAndroid.bp33 "ActivateCredential.c",
34 "AlgorithmCap.c",
35 "Attest_spt.c",
36 "Bits.c",
37 "Cancel.c",
38 "Certify.c",
39 "CertifyCreation.c",
40 "ChangeEPS.c",
41 "ChangePPS.c",
42 "Clear.c",
[all …]
DMakefile12 SOURCES = ActivateCredential.c
13 SOURCES += AlgorithmCap.c
14 SOURCES += Attest_spt.c
15 SOURCES += Bits.c
16 SOURCES += Cancel.c
17 SOURCES += Certify.c
18 SOURCES += CertifyCreation.c
19 SOURCES += ChangeEPS.c
20 SOURCES += ChangePPS.c
21 SOURCES += Clear.c
[all …]
/external/tcpdump/
DAndroid.mk6 tcpdump_src_files := setsignal.c tcpdump.c
10 addrtoname.c \
11 addrtostr.c \
12 af.c \
13 ascii_strcasecmp.c \
14 checksum.c \
15 cpack.c \
16 gmpls.c \
17 gmt2local.c \
18 in_cksum.c \
[all …]
/external/strace/
DAndroid.bp20 "access.c",
21 "affinity.c",
22 "aio.c",
23 "basic_filters.c",
24 "bind.c",
25 "bjm.c",
26 "block.c",
27 "bpf.c",
28 "bpf_filter.c",
29 "bpf_seccomp_filter.c",
[all …]
/external/guava/guava-tests/test/com/google/common/io/testdata/
Dsimplifypathwithabsoluteprefixtests.txt1 /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/ImageMagick/coders/
DAndroid.mk23 LOCAL_SRC_FILES += aai.c\
24 art.c\
25 avs.c\
26 bgr.c\
27 bmp.c\
28 braille.c\
29 cals.c\
30 caption.c\
31 cin.c\
32 cip.c\
[all …]
/external/libcxx/test/std/re/re.traits/
Dvalue.pass.cpp25 for (char c = 0; c < '0'; ++c) in main() local
27 assert(t.value(c, 8) == -1); in main()
28 assert(t.value(c, 10) == -1); in main()
29 assert(t.value(c, 16) == -1); in main()
31 for (char c = '0'; c < '8'; ++c) in main() local
33 assert(t.value(c, 8) == c - '0'); in main()
34 assert(t.value(c, 10) == c - '0'); in main()
35 assert(t.value(c, 16) == c - '0'); in main()
37 for (char c = '8'; c < ':'; ++c) in main() local
39 assert(t.value(c, 8) == -1); in main()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat256.java13 long c = 0; in add() local
14 c += (x[0] & M) + (y[0] & M); in add()
15 z[0] = (int)c; in add()
16 c >>>= 32; in add()
17 c += (x[1] & M) + (y[1] & M); in add()
18 z[1] = (int)c; in add()
19 c >>>= 32; in add()
20 c += (x[2] & M) + (y[2] & M); in add()
21 z[2] = (int)c; in add()
22 c >>>= 32; in add()
[all …]
DNat224.java13 long c = 0; in add() local
14 c += (x[0] & M) + (y[0] & M); in add()
15 z[0] = (int)c; in add()
16 c >>>= 32; in add()
17 c += (x[1] & M) + (y[1] & M); in add()
18 z[1] = (int)c; in add()
19 c >>>= 32; in add()
20 c += (x[2] & M) + (y[2] & M); in add()
21 z[2] = (int)c; in add()
22 c >>>= 32; in add()
[all …]
DNat192.java13 long c = 0; in add() local
14 c += (x[0] & M) + (y[0] & M); in add()
15 z[0] = (int)c; in add()
16 c >>>= 32; in add()
17 c += (x[1] & M) + (y[1] & M); in add()
18 z[1] = (int)c; in add()
19 c >>>= 32; in add()
20 c += (x[2] & M) + (y[2] & M); in add()
21 z[2] = (int)c; in add()
22 c >>>= 32; in add()
[all …]
/external/libxml2/os400/libxmlrpg/
Dxmlerror.rpgle20 d XML_ERR_NONE c 0
22 d c 1
23 d XML_ERR_ERROR c 2 A recoverable error
24 d XML_ERR_FATAL c 3 A fatal error
32 d XML_FROM_NONE c 0
34 d c 1
35 d XML_FROM_TREE c 2 Tree module
37 d c 3
38 d XML_FROM_DTD c 4 DTD validation
39 d XML_FROM_HTML c 5 HTML parser
[all …]
/external/libopus/
Dsilk_sources.mk2 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/curl/packages/Symbian/group/
Dlibcurl.mmp24 file.c timeval.c base64.c hostip.c progress.c formdata.c \
25 cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
26 ldap.c vtls/openssl.c version.c getenv.c escape.c mprintf.c telnet.c \
27 netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c \
28 curl_fnmatch.c fileinfo.c ftplistparser.c wildcard.c krb5.c \
29 memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c \
30 content_encoding.c share.c http_digest.c md4.c md5.c curl_rand.c \
31 http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c \
32 hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c \
33 select.c vtls/gtls.c vtls/vtls.c tftp.c splay.c strdup.c socks.c \
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client_test.py38 def _Execute(self, c, arguments): argument
39 compiled_c = c.Build().CompileWithExampleArguments(arguments)
42 def _ExecuteAndAssertWith(self, assert_func, c, arguments, expected): argument
44 result = self._Execute(c, arguments)
51 def _ExecuteAndCompareExact(self, c, arguments=(), expected=None): argument
52 self._ExecuteAndAssertWith(np.testing.assert_equal, c, arguments, expected)
54 def _ExecuteAndCompareClose(self, c, arguments=(), expected=None): argument
55 self._ExecuteAndAssertWith(np.testing.assert_allclose, c, arguments,
88 c = self._NewComputation()
89 root = c.Add(c.ConstantF32Scalar(1.11), c.ConstantF32Scalar(3.14))
[all …]
/external/libunwind/src/ia64/
Dinit.h29 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/curl/
DAndroid.bp63 "lib/rand.c",
64 "lib/file.c",
65 "lib/timeval.c",
66 "lib/base64.c",
67 "lib/hostip.c",
68 "lib/progress.c",
69 "lib/formdata.c",
70 "lib/cookie.c",
71 "lib/http.c",
72 "lib/sendf.c",
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
DMakefile.sources4 brw_compiler.c \
9 brw_disasm.c \
10 brw_eu.c \
11 brw_eu_compact.c \
12 brw_eu_emit.c \
14 brw_eu_util.c \
15 brw_eu_validate.c \
39 brw_interpolation_map.c \
44 brw_nir.c \
45 brw_nir_analyze_boolean_resolves.c \
[all …]
/external/libxml2/result/pattern/
Dmultiple1 Node /c/b[1]/a[1] matches pattern a
2 Node /c/b[1]/a[2] matches pattern a
3 Node /c/c/b/a[1] matches pattern a
4 Node /c/c/b/a[2] matches pattern a
5 Node /c/b[2]/a[1] matches pattern a
6 Node /c/b[2]/a[2] matches pattern a
7 Node /c/b[1] matches pattern b
8 Node /c/c/b matches pattern b
9 Node /c/b[2] matches pattern b
10 Node /c matches pattern c
[all …]
/external/elfutils/libelf/
DAndroid.bp21 "elf32_checksum.c",
22 "elf32_fsize.c",
23 "elf32_getchdr.c",
24 "elf32_getehdr.c",
25 "elf32_getphdr.c",
26 "elf32_getshdr.c",
27 "elf32_newehdr.c",
28 "elf32_newphdr.c",
29 "elf32_offscn.c",
30 "elf32_updatefile.c",
[all …]
/external/libvpx/
DAndroid.bp5 "libvpx/vp8/common/arm/loopfilter_arm.c",
6 "libvpx/vp8/common/arm/neon/bilinearpredict_neon.c",
7 "libvpx/vp8/common/arm/neon/copymem_neon.c",
8 "libvpx/vp8/common/arm/neon/dc_only_idct_add_neon.c",
9 "libvpx/vp8/common/arm/neon/dequant_idct_neon.c",
10 "libvpx/vp8/common/arm/neon/dequantizeb_neon.c",
11 "libvpx/vp8/common/arm/neon/idct_blk_neon.c",
12 "libvpx/vp8/common/arm/neon/idct_dequant_0_2x_neon.c",
13 "libvpx/vp8/common/arm/neon/idct_dequant_full_2x_neon.c",
14 "libvpx/vp8/common/arm/neon/iwalsh_neon.c",
[all …]
/external/ImageMagick/MagickCore/
DAndroid.mk23 LOCAL_SRC_FILES := accelerate.c\
24 client.c\
25 decorate.c\
26 feature.c\
27 linked-list.c\
28 monitor.c\
29 prepress.c\
30 resize.c\
31 string.c\
32 vms.c\
[all …]

12345678910>>...340