Home
last modified time | relevance | path

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

12345678910>>...524

/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 …]
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/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/openssh/
Dnchan.c91 chan_set_istate(Channel *c, u_int next) in chan_set_istate() argument
93 if (c->istate > CHAN_INPUT_CLOSED || next > CHAN_INPUT_CLOSED) in chan_set_istate()
94 fatal("chan_set_istate: bad state %d -> %d", c->istate, next); in chan_set_istate()
95 debug2("channel %d: input %s -> %s", c->self, istates[c->istate], in chan_set_istate()
97 c->istate = next; in chan_set_istate()
100 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() argument
102 if (c->ostate > CHAN_OUTPUT_CLOSED || next > CHAN_OUTPUT_CLOSED) in chan_set_ostate()
103 fatal("chan_set_ostate: bad state %d -> %d", c->ostate, next); in chan_set_ostate()
104 debug2("channel %d: output %s -> %s", c->self, ostates[c->ostate], in chan_set_ostate()
106 c->ostate = next; in chan_set_ostate()
[all …]
/external/u-boot/fs/ubifs/
Dmaster.c29 static int scan_for_master(struct ubifs_info *c) in scan_for_master() argument
37 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master()
46 memcpy(c->mst_node, snod->node, snod->len); in scan_for_master()
53 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master()
65 if (memcmp((void *)c->mst_node + UBIFS_CH_SZ, in scan_for_master()
69 c->mst_offs = offs; in scan_for_master()
78 ubifs_err(c, "unexpected node type %d master LEB %d:%d", in scan_for_master()
91 static int validate_master(const struct ubifs_info *c) in validate_master() argument
96 if (c->max_sqnum >= SQNUM_WATERMARK) { in validate_master()
101 if (c->cmt_no >= c->max_sqnum) { in validate_master()
[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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/
DNat224.java17 long c = 0; in add() local
18 c += (x[0] & M) + (y[0] & M); in add()
19 z[0] = (int)c; in add()
20 c >>>= 32; in add()
21 c += (x[1] & M) + (y[1] & M); in add()
22 z[1] = (int)c; in add()
23 c >>>= 32; in add()
24 c += (x[2] & M) + (y[2] & M); in add()
25 z[2] = (int)c; in add()
26 c >>>= 32; in add()
[all …]
DNat256.java17 long c = 0; in add() local
18 c += (x[0] & M) + (y[0] & M); in add()
19 z[0] = (int)c; in add()
20 c >>>= 32; in add()
21 c += (x[1] & M) + (y[1] & M); in add()
22 z[1] = (int)c; in add()
23 c >>>= 32; in add()
24 c += (x[2] & M) + (y[2] & M); in add()
25 z[2] = (int)c; in add()
26 c >>>= 32; in add()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
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 …]
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 …]
/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/arm-neon-tests/
DAndroid.bp33 "compute_ref.c",
36 "ref_vld1.c",
37 "ref_vadd.c",
38 "ref_vld1_lane.c",
39 "ref_vld1_dup.c",
40 "ref_vdup.c",
41 "ref_vget_high.c",
42 "ref_vget_low.c",
43 "ref_vqdmlal_lane.c",
44 "ref_vqdmlsl_lane.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/tcpdump/
DAndroid.bp33 "setsignal.c",
34 "tcpdump.c",
36 "addrtoname.c",
37 "addrtostr.c",
38 "af.c",
39 "ascii_strcasecmp.c",
40 "checksum.c",
41 "cpack.c",
42 "gmpls.c",
43 "gmt2local.c",
[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/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/mesa3d/src/mesa/drivers/dri/i965/
DMakefile.sources2 brw_binding_tables.c \
3 brw_blorp.c \
5 brw_bufmgr.c \
7 brw_clear.c \
8 brw_clip.c \
9 brw_compute.c \
10 brw_conditional_render.c \
11 brw_context.c \
13 brw_cs.c \
15 brw_curbe.c \
[all …]
/external/tensorflow/tensorflow/core/ops/
Dimage_ops.cc30 Status SetOutputToSizedImage(InferenceContext* c, DimensionHandle batch_dim, in SetOutputToSizedImage() argument
34 TF_RETURN_IF_ERROR(c->WithRank(c->input(size_input_idx), 1, &size)); in SetOutputToSizedImage()
36 TF_RETURN_IF_ERROR(c->WithValue(c->Dim(size, 0), 2, &unused)); in SetOutputToSizedImage()
39 const Tensor* size_tensor = c->input_tensor(size_input_idx); in SetOutputToSizedImage()
43 width = c->UnknownDim(); in SetOutputToSizedImage()
44 height = c->UnknownDim(); in SetOutputToSizedImage()
52 " in ", c->DebugString()); in SetOutputToSizedImage()
55 height = c->MakeDim(vec(0)); in SetOutputToSizedImage()
56 width = c->MakeDim(vec(1)); in SetOutputToSizedImage()
58 c->set_output(0, c->MakeShape({batch_dim, height, width, channel_dim})); in SetOutputToSizedImage()
[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/mesa3d/src/broadcom/compiler/
Dnir_to_vir.c36 ntq_emit_cf_list(struct v3d_compile *c, struct exec_list *list);
39 resize_qreg_array(struct v3d_compile *c, in resize_qreg_array() argument
49 *regs = reralloc(c, *regs, struct qreg, *size); in resize_qreg_array()
56 (*regs)[i] = c->undef; in resize_qreg_array()
60 vir_emit_thrsw(struct v3d_compile *c) in vir_emit_thrsw() argument
62 if (c->threads == 1) in vir_emit_thrsw()
71 c->last_thrsw = vir_NOP(c); in vir_emit_thrsw()
72 c->last_thrsw->qpu.sig.thrsw = true; in vir_emit_thrsw()
73 c->last_thrsw_at_top_level = (c->execute.file == QFILE_NULL); in vir_emit_thrsw()
77 vir_SFU(struct v3d_compile *c, int waddr, struct qreg src) in vir_SFU() argument
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client_test.py53 def _Execute(self, c, arguments): argument
54 compiled_c = c.Build().CompileWithExampleArguments(arguments)
57 def _ExecuteAndAssertWith(self, assert_func, c, arguments, expected): argument
59 result = self._Execute(c, arguments)
66 def _ExecuteAndCompareExact(self, c, arguments=(), expected=None): argument
67 self._ExecuteAndAssertWith(np.testing.assert_equal, c, arguments, expected)
69 def _ExecuteAndCompareClose(self, c, arguments=(), expected=None, rtol=1e-7, argument
73 c, arguments, expected)
125 c = self._NewComputation()
126 root = c.Add(c.Constant(np.int8(1)), c.Constant(np.int8(2)))
[all …]
/external/libvpx/
DAndroid.bp5 "libvpx/vp8/common/alloccommon.c",
6 "libvpx/vp8/common/arm/loopfilter_arm.c",
7 "libvpx/vp8/common/arm/neon/bilinearpredict_neon.c",
8 "libvpx/vp8/common/arm/neon/copymem_neon.c",
9 "libvpx/vp8/common/arm/neon/dc_only_idct_add_neon.c",
10 "libvpx/vp8/common/arm/neon/dequant_idct_neon.c",
11 "libvpx/vp8/common/arm/neon/dequantizeb_neon.c",
12 "libvpx/vp8/common/arm/neon/idct_blk_neon.c",
13 "libvpx/vp8/common/arm/neon/iwalsh_neon.c",
14 "libvpx/vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c",
[all …]

12345678910>>...524