HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 126 - 150 of 620) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP256K1Field.java 108 long cc = Nat256.mul33Add(PInv33, xx, 8, xx, 0, z, 0); local
109 int c = Nat256.mul33DWordAdd(PInv33, cc, z, 0);
  /external/clang/test/CodeGen/
wasm-arguments.c 22 int cc; member in struct:__anon8831
33 int cc; member in struct:__anon8832
  /external/clang/test/SemaCXX/
const-cast.cpp 14 typedef const char cc; typedef
15 typedef cc *ccp;
  /external/libchrome/base/threading/
thread_restrictions.h 23 namespace cc { namespace
198 friend class cc::CompletionEvent;
199 friend class cc::SingleThreadTaskGraphRunner;
  /external/libedit/examples/
tc1.c 181 int ac, cc, co; local
205 ac = cc = co = 0;
206 ncontinuation = tok_line(tok, li, &ac, &av, &cc, &co);
213 (void) fprintf(stderr, " > nc %d ac %d cc %d co %d\n",
214 ncontinuation, ac, cc, co);
241 if (i != cc)
wtc1.c 158 int ac, cc, co, rc; local
181 ac = cc = co = 0;
182 ncontinuation = tok_wline(tok, li, &ac, &av, &cc, &co);
190 (void)fprintf(stderr, " > nc %d ac %d cc %d co %d\n",
191 ncontinuation, ac, cc, co);
203 if (i != cc)
  /external/libedit/src/
tokenizer.c 199 int cc, co; local
201 cc = co = -1;
207 cc = (int)tok->argc;
425 if (cc == -1 && co == -1) {
426 cc = (int)tok->argc;
430 *cursorc = cc;
  /external/libpcap/
pcap-pf.c 105 register int cc, n, buflen, inc; local
113 cc = pc->cc;
114 if (cc == 0) {
115 cc = read(pc->fd, (char *)pc->buffer + pc->offset, pc->bufsize);
116 if (cc < 0) {
142 while (cc > 0) {
157 pc->cc = cc;
162 if (cc < sizeof(*sp))
    [all...]
pcap-snit.c 22 * Micky Liu, micky@cunixc.cc.columbia.edu, Columbia University in May, 1989.
119 register int cc, n; local
127 cc = p->cc;
128 if (cc == 0) {
129 cc = read(p->fd, (char *)p->buffer, p->bufsize);
130 if (cc < 0) {
145 ep = bp + cc;
162 p->cc = ep - bp;
200 p->cc = ep - bp
    [all...]
  /external/libpcap/tests/
filtertest.c 77 register int i, fd, cc; local
92 cc = read(fd, cp, (u_int)buf.st_size);
93 if (cc < 0)
95 if (cc != buf.st_size)
96 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
100 for (i = 0; i < cc; i++) {
102 while (i < cc && cp[i] != '\n')
105 cp[cc] = '\0';
valgrindtest.c 105 register int i, fd, cc; local
120 cc = read(fd, cp, (u_int)buf.st_size);
121 if (cc < 0)
123 if (cc != buf.st_size)
124 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
128 for (i = 0; i < cc; i++) {
130 while (i < cc && cp[i] != '\n')
133 cp[cc] = '\0';
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 122 unsigned cc; local
128 cc = 0;
131 cc = 4;
134 cc = 1;
137 cc = 2;
140 cc = 1;
144 cc = 2;
161 args[2] = LLVMConstInt(LLVMInt8TypeInContext(gallivm->context), cc, 0);
  /external/mesa3d/src/mesa/swrast_setup/
ss_tritmp.h 57 GLfloat cc = ex*fy - ey*fx; local
61 facing = (cc < 0.0) ^ ctx->Polygon._FrontBit;
141 if (cc * cc > 1e-16) {
144 const GLfloat oneOverArea = 1.0F / cc;
  /external/opencv3/modules/cudalegacy/perf/
perf_labeling.cpp 91 int cc = -1; local
107 cc++;
109 dist_labels[j * pitch + i] = cc;
116 dl[0] = cc;
  /external/opencv3/modules/cudalegacy/test/
test_labeling.cpp 83 int cc = -1; local
100 cc++;
102 dist_labels[j * pitch + i] = cc;
109 dl[0] = cc;
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_GrdProc.cpp 73 int32_t nLineBytes, nBitsLeft, cc; local
99 for (cc = 0; cc < nLineBytes; cc++) {
109 pLine[cc] = cVal;
126 for (cc = 0; cc < nLineBytes; cc++) {
137 pLine[cc] = cVal;
211 int32_t nLineBytes, nBitsLeft, cc; local
345 int32_t nLineBytes, nBitsLeft, cc; local
478 int32_t nLineBytes, nBitsLeft, cc; local
705 int32_t nLineBytes, nBitsLeft, cc; local
855 int32_t nLineBytes, nBitsLeft, cc; local
1000 int32_t nLineBytes, nBitsLeft, cc; local
1145 int32_t nLineBytes, nBitsLeft, cc; local
    [all...]
  /external/ppp/pppd/include/
pcap-int.h 84 int cc; member in struct:pcap
  /external/ppp/pppd/plugins/pppoatm/
ans.c 201 int cc; local
215 if (sscanf(buffer,"%d",&cc) == 1) {
216 if (cc < 10) cc_table[cc] = 1;
217 else if (cc < 100) cc_table[cc] = 2;
218 else cc_table[cc/10] = 3;
  /external/strace/
count.c 55 struct call_counts *cc; local
63 cc = &counts[scno];
65 cc->calls++;
67 cc->errors++;
102 tv_add(&cc->time, &cc->time, count_wallclock ? &wtv : tv);
194 struct call_counts *cc = &counts[idx]; local
195 if (cc->calls == 0)
197 tv_div(&dtv, &cc->time, cc->calls)
    [all...]
v4l2.c 74 unsigned char cc[sizeof(uint32_t)]; member in union:__anon24342
86 for (i = 0; i < sizeof(u.cc); ++i) {
87 unsigned int c = u.cc[i];
97 u.cc[i],
  /external/valgrind/coregrind/
m_rangemap.c 52 const HChar* cc; /* cost centre for alloc */ member in struct:_RangeMap
66 const HChar* cc,
73 RangeMap* rm = alloc_fn(cc, sizeof(RangeMap));
75 rm->cc = cc;
77 rm->ranges = VG_(newXA)( alloc_fn, cc, free_fn, sizeof(Range) );
  /external/valgrind/none/tests/s390x/
mvcl.c 15 uint32_t cc; member in struct:__anon27162
24 uint64_t cc; member in struct:__anon27163
38 register uint32_t cc asm ("7");
43 :"=d"(cc), "+d"(a1), "+d"(l1), "+d"(a2), "+d"(l2)
45 : "memory", "cc");
51 regs.cc = cc;
66 result.cc = regs.cc;
139 if (result1.cc != result2.cc
    [all...]
pfpo.c 29 #define PFPO(initial, src_type, dst_type, fn_code, round, ret_code, cc) \
38 :"=f"(dst_reg), "=d"(ret), "=d" (cc) \
49 int cc; local
72 PFPO(0., double, _Decimal64, 0x81090600, 0, ret_code, cc);
73 printf("pfpo test: function=%x ret=%d cc=%d\n", 0x81090600, ret_code, cc);
76 PFPO(0., double, _Decimal64, 0x81990600, 0, ret_code, cc);
77 printf("pfpo test: function=%x ret=%d cc=%d\n", 0x81990600, ret_code, cc);
87 i, ret_code, cc);
    [all...]
  /external/vboot_reference/tests/
vb2_api_tests.c 22 static struct vb2_context cc; variable in typeref:struct:vb2_context
52 memset(&cc, 0, sizeof(cc));
53 cc.workbuf = workbuf;
54 cc.workbuf_size = sizeof(workbuf);
56 vb2_init_context(&cc);
57 sd = vb2_get_sd(&cc);
59 vb2_nv_init(&cc);
61 vb2_secdata_create(&cc);
62 vb2_secdata_init(&cc);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 274 register int32 cc = (int32)op3; local
280 "r"(cc));
290 register int32 cc = (int32)round; local
296 "r"(cc));
306 register int32 cc = (int32)k1; local
312 "r"(cc));
322 register int32 cc = (int32)k1; local
328 "r"(cc));
337 register int32 cc = (int32)k1; local
343 "r"(cc));
354 register int32 cc = (int32)k2; local
    [all...]

Completed in 911 milliseconds

1 2 3 4 56 7 8 91011>>