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

1 2 34 5 6 7 8 91011>>

  /build/soong/cc/
x86_device.go 15 package cc package
  /build/tools/acp/
acp.c 44 int i, cc; local
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
DspFftServer.java 54 double cc, ss, t1, t2; local
86 cc = mCos.mData[aa];
90 t1 = cc * r.mReal[kk + n1] - ss * r.mImag[kk + n1];
91 t2 = ss * r.mReal[kk + n1] + cc * r.mImag[kk + n1];
  /external/clang/test/CodeGen/
builtins-systemz-vector-error.c 27 int cc; variable
114 __builtin_s390_vfaebs(vuc, vuc, -1, &cc); // expected-error {{argument should be a value from 0 to 15}}
115 __builtin_s390_vfaebs(vuc, vuc, 16, &cc); // expected-error {{argument should be a value from 0 to 15}}
116 __builtin_s390_vfaebs(vuc, vuc, len, &cc); // expected-error {{must be a constant integer}}
118 __builtin_s390_vfaehs(vus, vus, -1, &cc); // expected-error {{argument should be a value from 0 to 15}}
119 __builtin_s390_vfaehs(vus, vus, 16, &cc); // expected-error {{argument should be a value from 0 to 15}}
120 __builtin_s390_vfaehs(vus, vus, len, &cc); // expected-error {{must be a constant integer}}
122 __builtin_s390_vfaefs(vui, vui, -1, &cc); // expected-error {{argument should be a value from 0 to 15}}
123 __builtin_s390_vfaefs(vui, vui, 16, &cc); // expected-error {{argument should be a value from 0 to 15}}
124 __builtin_s390_vfaefs(vui, vui, len, &cc); // expected-error {{must be a constant integer}
    [all...]
builtins-systemz-vector.c 28 int cc; variable
59 vuc = __builtin_s390_vpklshs(vus, vus, &cc);
61 vus = __builtin_s390_vpklsfs(vui, vui, &cc);
63 vui = __builtin_s390_vpklsgs(vul, vul, &cc);
73 vsc = __builtin_s390_vpkshs(vss, vss, &cc);
75 vss = __builtin_s390_vpksfs(vsi, vsi, &cc);
77 vsi = __builtin_s390_vpksgs(vsl, vsl, &cc);
364 vsc = __builtin_s390_vceqbs(vsc, vsc, &cc);
366 vss = __builtin_s390_vceqhs(vss, vss, &cc);
368 vsi = __builtin_s390_vceqfs(vsi, vsi, &cc);
    [all...]
le32-arguments.c 17 int cc; member in struct:__anon8740
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestContext.java 75 ContextCase cc; local
82 cc = contextData[tc];
83 prologue = pseudoToU16(cc.prologue);
84 epilogue = pseudoToU16(cc.epilogue);
89 src = pseudoToU16(cc.source);
90 bidi.setPara(src, cc.paraLevel, null);
94 "\nPrologue: " + cc.prologue +
95 "\nInput: " + cc.source +
96 "\nEpilogue: " + cc.epilogue +
98 cc.expected, dest)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestContext.java 71 ContextCase cc; local
78 cc = contextData[tc];
79 prologue = pseudoToU16(cc.prologue);
80 epilogue = pseudoToU16(cc.epilogue);
85 src = pseudoToU16(cc.source);
86 bidi.setPara(src, cc.paraLevel, null);
90 "\nPrologue: " + cc.prologue +
91 "\nInput: " + cc.source +
92 "\nEpilogue: " + cc.epilogue +
94 cc.expected, dest)
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Compiler.java 147 CompiledClass cc = new CompiledClass(); local
148 cc.classname = a;
149 cc.metaobject = null;
150 cc.classobject = null;
151 result[++n] = cc;
  /external/libmicrohttpd/src/testcurl/
test_digestauth.c 168 HCRYPTPROV cc; local
170 b = CryptAcquireContext (&cc, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
177 b = CryptGenRandom (cc, 8, rnd);
183 CryptReleaseContext (cc, 0);
test_digestauth_with_arguments.c 167 HCRYPTPROV cc; local
169 b = CryptAcquireContext (&cc, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
176 b = CryptGenRandom (cc, 8, rnd);
182 CryptReleaseContext (cc, 0);
  /external/libpcap/
pcap-enet.c 57 register int cc, caplen; local
66 if ((cc = read(if_fd, (char *)buf.p, sizeof(buf))) < 0)
74 while (cc > 0) {
87 cc -= inc;
91 caplen = cc > snaplen ? snaplen : cc ;
92 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
95 (*printit)(buf.hdr.packet, &tv, cc, caplen);
pcap-nit.c 106 register int cc, n; local
111 cc = p->cc;
112 if (cc == 0) {
113 cc = read(p->fd, (char *)p->buffer, p->bufsize);
114 if (cc < 0) {
131 ep = bp + cc;
147 p->cc = ep - bp;
189 p->cc = ep - bp;
195 p->cc = 0
    [all...]
pcap-snoop.c 68 int cc; local
87 cc = read(p->fd, (char *)p->buffer, p->bufsize);
88 if (cc < 0) {
110 if (cc == (p->snapshot + sizeof(struct snoopheader)) &&
  /external/llvm/tools/bugpoint/
BugDriver.h 39 class CC;
55 CC *cc; member in class:llvm::BugDriver
ToolRunner.h 36 // CC abstraction
38 class CC {
39 std::string CCPath; // The path to the cc executable.
41 std::vector<std::string> ccArgs; // CC-specific arguments.
42 CC(StringRef ccPath, StringRef RemotePath,
50 static CC *create(std::string &Message,
122 /// understood by the CC driver (either C or asm). If the code generator
125 virtual CC::FileType OutputCode(const std::string &Bitcode,
130 return CC::AsmFile;
157 CC *cc member in class:llvm::LLC
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/
Makefile 105 define egl-cc
106 $(CC) -c $(common_INCLUDES) $($(1)_INCLUDES) $(DEFINES) $(CFLAGS) $< -o $@
110 $(CC) -c $(EGL_CPPFLAGS) $(DEFINES) $(CFLAGS) $< -o $@
113 $(call egl-cc,x11)
116 $(call egl-cc,wayland)
119 $(call egl-cc,drm)
122 $(call egl-cc,fbdev)
125 $(call egl-cc,null)
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_cc.c 56 size, 64, &brw->cc.blend_state_offset);
214 struct gen6_color_calc_state *cc; local
216 cc = brw_state_batch(brw, AUB_TRACE_CC_STATE,
217 sizeof(*cc), 64, &brw->cc.state_offset);
218 memset(cc, 0, sizeof(*cc));
221 cc->cc0.alpha_test_format = BRW_ALPHATEST_FORMAT_UNORM8;
222 UNCLAMPED_FLOAT_TO_UBYTE(cc->cc1.alpha_ref_fi.ui, ctx->Color.AlphaRef);
225 cc->cc0.stencil_ref = ctx->Stencil.Ref[0]
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_packbits.c 65 PackBitsEncode(TIFF* tif, uint8* buf, tmsize_t cc, uint16 s)
80 while (cc > 0) {
84 b = *bp++, cc--, n = 1;
85 for (; cc > 0 && b == *bp; cc--, bp++)
194 PackBitsEncodeChunk(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
198 while (cc > 0) {
201 if( cc < chunk )
202 chunk = cc;
207 cc -= chunk
217 tmsize_t cc; local
    [all...]
tif_thunder.c 92 register tmsize_t cc; local
97 cc = tif->tif_rawcc;
100 while (cc > 0 && npixels < maxpixels) {
103 n = *bp++, cc--;
144 tif->tif_rawcc = cc;
  /external/pdfium/third_party/libtiff/
tif_packbits.c 65 PackBitsEncode(TIFF* tif, uint8* buf, tmsize_t cc, uint16 s)
80 while (cc > 0) {
84 b = *bp++, cc--, n = 1;
85 for (; cc > 0 && b == *bp; cc--, bp++)
194 PackBitsEncodeChunk(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
198 while (cc > 0) {
201 if( cc < chunk )
202 chunk = cc;
207 cc -= chunk
217 tmsize_t cc; local
    [all...]
tif_thunder.c 92 register tmsize_t cc; local
97 cc = tif->tif_rawcc;
100 while (cc > 0 && npixels < maxpixels) {
103 n = *bp++, cc--;
144 tif->tif_rawcc = cc;
  /external/regex-re2/re2/
simplify.cc 382 CharClass* cc = re->cc(); local
385 if (cc->empty())
387 if (cc->full())
tostring.cc 6 // Tested by parse_test.cc
256 if (re->cc()->size() == 0) {
263 CharClass* cc = re->cc(); local
264 if (cc->Contains(0xFFFE)) {
265 cc = cc->Negate();
268 for (CharClass::iterator i = cc->begin(); i != cc->end(); ++i)
270 if (cc != re->cc()
    [all...]
  /external/regex-re2/re2/testing/
charclass_test.cc 86 static void Broke(const char *desc, const CCTest* t, CharClass* cc) {
104 for (typename CharClass::iterator it = cc->begin(); it != cc->end(); ++it)
118 CharClass* Negate(CharClass *cc) {
119 return cc->Negate();
122 void Delete(CharClass* cc) {
123 cc->Delete();
126 CharClassBuilder* Negate(CharClassBuilder* cc) {
127 CharClassBuilder* ncc = cc->Copy();
132 void Delete(CharClassBuilder* cc) {
206 CharClass* cc = ccb.GetCharClass(); local
    [all...]

Completed in 650 milliseconds

1 2 34 5 6 7 8 91011>>