HomeSort by relevance Sort by last modified time
    Searched defs:bc (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
p1.cpp 10 B<T>::C bc; // ok, B<T> is the current instantiation. member in struct:Example1::A
15 B<B<T>>::C bc; // ok, B<B<T>> is the current instantiation. member in struct:Example1::A
20 B<B<T>>::C bc; // expected-error {{missing 'typename'}} member in struct:Example1::A
  /external/libgsm/src/
gsm_print.c 18 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
38 bc[0] = (*c++ & 0x1) << 1;
39 bc[0] |= (*c >> 7) & 0x1;
61 bc[1] = (*c++ & 0x1) << 1;
62 bc[1] |= (*c >> 7) & 0x1;
85 bc[2] = (*c++ & 0x1) << 1; /* 20 */
86 bc[2] |= (*c >> 7) & 0x1;
108 bc[3] = (*c++ & 0x1) << 1;
109 bc[3] |= (*c >> 7) & 0x1;
135 fprintf(f, "#1: Nc %4.4d bc %d Mc %d xmaxc %d\n"
    [all...]
gsm_decode.c 16 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
41 bc[0] = sr & 0x3; sr >>= 2;
65 bc[1] = sr & 0x3; sr >>= 2;
89 bc[2] = sr & 0x3; sr >>= 2;
113 bc[3] = sr & 0x3; sr >>= 2;
155 bc[0] = sr & 0x3; sr >>= 2;
179 bc[1] = sr & 0x3; sr >>= 2;
203 bc[2] = sr & 0x3; sr >>= 2;
227 bc[3] = sr & 0x3; sr >>= 2;
269 bc[0] = (*c++ & 0x1) << 1
    [all...]
gsm_encode.c 15 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
17 Gsm_Coder(s, source, LARc, Nc, bc, Mc, xmaxc, xmc);
34 bc[0] 2
52 bc[1] 2
70 bc[2] 2
88 bc[3] 2
129 sr = sr >> 2 | bc[0] << 14;
153 sr = sr >> 2 | bc[1] << 14;
177 sr = sr >> 2 | bc[2] << 14;
201 sr = sr >> 2 | bc[3] << 14
    [all...]
gsm_explode.c 17 # define bc *((gsm_signal (*) [17])(target + 9)) macro
44 bc[0] = sr & 0x3; sr >>= 2;
70 bc[1] = sr & 0x3; sr >>= 2;
97 bc[2] = sr & 0x3; sr >>= 2;
125 bc[3] = sr & 0x3; sr >>= 2;
170 bc[0] = sr & 0x3; sr >>= 2;
196 bc[1] = sr & 0x3; sr >>= 2;
223 bc[2] = sr & 0x3; sr >>= 2;
249 bc[3] = sr & 0x3; sr >>= 2;
297 bc[0] = (*c++ & 0x1) << 1
    [all...]
gsm_implode.c 30 bc[0] 2 9
48 bc[1] 2 26
66 bc[2] 2 43
84 bc[3] 2 60
111 # define bc *((gsm_signal (*) [17])(source + 9)) macro
134 sr = sr >> 2 | bc[0] << 14;
161 sr = sr >> 2 | bc[1] << 14;
188 sr = sr >> 2 | bc[2] << 14;
215 sr = sr >> 2 | bc[3] << 14;
260 sr = sr >> 2 | bc[0] << 14
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CTRMode.java 18 BlockCipher bc; field in class:CTRMode
30 bc = tc;
31 blockSize = bc.getBlockSize();
50 bc.transformBlock(X, 0, Xenc, 0);
BlockCipherFactory.java 79 BlockCipher bc = (BlockCipher) cc.newInstance(); local
83 bc.init(encrypt, key);
84 return new CBCMode(bc, iv, encrypt);
88 bc.init(true, key);
89 return new CTRMode(bc, iv, encrypt);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/bc/
BCObjectIdentifiers.java 1 package org.bouncycastle.asn1.bc;
12 public static final DERObjectIdentifier bc = new DERObjectIdentifier("1.3.6.1.4.1.22554"); field in interface:BCObjectIdentifiers
17 public static final DERObjectIdentifier bc_pbe = new DERObjectIdentifier(bc.getId() + ".1");
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 39 B<char> bc; variable
  /external/v8/src/
diy-fp.cc 47 uint64_t bc = b * c; local
50 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
54 uint64_t result_f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chv_filter.cpp 188 int br, bc, mbr, mbc; local
216 for (bc = mbc; bc < mbc + 2; bc++)
219 if (bc < pp_w) /* boundary : don't do it on the most right col block */
221 ptr = rec + (brwidth << 6) + (bc << 3);
222 jVal0 = brwidth + bc;
325 }/*bc*/
332 for (bc = mbc + 1; bc < mbc + 3; bc++
465 int br, bc, mbr, mbc; local
    [all...]
chvr_filter.cpp 36 int br, bc, incr, mbr, mbc; local
91 for (bc = mbc; bc < mbc + 2; bc++) /* bc is the column counter in blocks */
95 if (br < pp_h && bc < pp_w)
99 * bc * 8 is the pixel column offset */
100 ptr = rec + (brwidth << 6) + (bc << 3);
103 index = brwidth + bc;
239 }/*bc*/
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/common/
BlobCacheTest.java 79 BlobCache bc = new BlobCache(TEST_FILE_NAME, MAX_ENTRIES, MAX_BYTES, true); local
81 assertEquals(0x1, bc.checkSum(buf));
83 assertEquals(0x10001, bc.checkSum(buf));
85 assertEquals(0x480048, bc.checkSum(buf));
90 assertEquals(0x940042, bc.checkSum(buf));
91 assertEquals(0x310031, bc.checkSum(buf, 1, 1));
92 assertEquals(0x1, bc.checkSum(buf, 1, 0));
93 assertEquals(0x630032, bc.checkSum(buf, 1, 2));
98 assertEquals(0x3574a610, bc.checkSum(buf));
99 bc.close()
119 BlobCache bc; local
200 BlobCache bc = new BlobCache(TEST_FILE_NAME, MAX_ENTRIES, MAX_BYTES, true); local
211 BlobCache bc = new BlobCache(TEST_FILE_NAME, MAX_ENTRIES, MAX_BYTES, true); local
221 BlobCache bc = new BlobCache(TEST_FILE_NAME, MAX_ENTRIES, MAX_BYTES, true); local
274 BlobCache bc = new BlobCache(TEST_FILE_NAME, MAX_ENTRIES, MAX_BYTES, true); local
293 BlobCache bc; local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 220 BridgeContext bc = (BridgeContext) getContext(); local
231 BridgeXmlBlockParser previousParser = bc.getPreviousParser();
254 bc.addViewKey(view, viewKey);
  /external/compiler-rt/lib/ppc/
multc3.c 30 long double bc = __gcc_qmul(b,c); local
33 DD imag = { .ld = __gcc_qadd(ad,bc) };
67 DD bcDD = { .ld = bc };
  /frameworks/compile/libbcc/runtime/lib/ppc/
multc3.c 34 long double bc = __gcc_qmul(b,c); local
37 DD imag = { .ld = __gcc_qadd(ad,bc) };
71 DD bcDD = { .ld = bc };
  /external/iproute2/ip/
iplink_can.c 216 struct can_berr_counter *bc = local
219 fprintf(f, "(berr-counter tx %d rx %d) ", bc->txerr, bc->rxerr);
  /external/qemu/audio/
dsound_template.h 191 DSCBCAPS bc; local
196 DSBCAPS bc; local
247 memset (&bc, 0, sizeof (bc));
248 bc.dwSize = sizeof (bc);
250 hr = glue (IFACE, _GetCaps) (ds->FIELD, &bc);
265 if (bc.dwBufferBytes & hw->info.align) {
268 bc.dwBufferBytes, hw->info.align + 1
271 hw->samples = bc.dwBufferBytes >> hw->info.shift
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 238 BlockCipher bc = null; local
244 bc = new CBCMode(des3, salt, false);
250 bc = new CBCMode(des, salt, false);
256 bc = new CBCMode(aes, salt, false);
262 bc = new CBCMode(aes, salt, false);
268 bc = new CBCMode(aes, salt, false);
275 if ((ps.data.length % bc.getBlockSize()) != 0)
277 + bc.getBlockSize());
283 for (int i = 0; i < ps.data.length / bc.getBlockSize(); i++)
285 bc.transformBlock(ps.data, i * bc.getBlockSize(), dz, i * bc.getBlockSize())
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 95 BoneContext bc = new BoneContext(boneStructure, arbt, bonesPoseChannels, blenderContext); local
96 bc.buildBone(result, bonesOMAs, blenderContext);
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 325 int cc = 0, fc = 0, sc = 0, bc = 0, lc = 0, ec = 0; /* Channel and element counters */ local
379 chIndex[cc] = bc;
383 chIndex[cc+1] = bc+1;
390 cc+=2; bc+=2;
392 cc++; bc++;
  /external/qemu/slirp/
bootp.c 55 BOOTPClient *bc; local
59 bc = &bootp_clients[i];
60 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
65 bc = &bootp_clients[i];
66 bc->allocated = 1;
68 return bc;
76 BOOTPClient *bc; local
80 bc = &bootp_clients[(req_addr & 0xff) - START_ADDR];
81 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
91 BOOTPClient *bc; local
155 BOOTPClient *bc = NULL; local
    [all...]
  /external/qemu/slirp-android/
bootp.c 56 BOOTPClient *bc; local
60 bc = &bootp_clients[i];
61 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
66 bc = &bootp_clients[i];
67 bc->allocated = 1;
71 return bc;
79 BOOTPClient *bc; local
83 bc = &bootp_clients[(req_addr & 0xff) - START_ADDR];
84 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
94 BOOTPClient *bc; local
160 BOOTPClient *bc = NULL; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extensions.java 230 BasicConstraints bc; local
231 if ((extension == null) || ((bc = extension.getBasicConstraintsValue()) == null)) {
234 return bc.getPathLenConstraint();

Completed in 3013 milliseconds

1 2 3 4 5