Searched defs:bc (Results 1 - 25 of 55) sorted by relevance

123

/external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
H A Dp1.cpp10 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/
H A Dgsm_print.c18 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
[all...]
H A Dcode.c27 void Gsm_Coder P8((S,s,LARc,Nc,bc,Mc,xmaxc,xMc), argument
52 word * bc, /* [0..3] coded LTP gain OUT */
76 bc++);
H A Dgsm_decode.c16 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[
[all...]
H A Dgsm_encode.c15 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[
[all...]
H A Dgsm_explode.c17 # 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[
[all...]
H A Dgsm_implode.c30 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[
[all...]
H A Dlong_term.c23 * This module computes the LTP gain (bc) and the LTP lag (Nc)
60 word Nc, bc; local
148 * quantization of the LTP gain b to get the coded version bc.
150 for (bc = 0; bc <= 2; bc++) if (R <= gsm_mult(S, gsm_DLB[bc])) break;
151 *bc_out = bc;
164 word Nc, bc; local
283 * quantization of the LTP gain b to get the coded version bc
302 word Nc, bc; local
479 word Nc, bc; local
648 word Nc, bc; local
720 word Nc, bc; local
834 Long_term_analysis_filtering(bc,Nc,dp,d,dpp,e), word bc, word Nc, register word * dp, register word * d, register word * dpp, register word * e argument
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/bc/
H A DBCObjectIdentifiers.java1 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/skia/src/effects/
H A DSkBitmapCache.h49 AutoValidate(const SkBitmapCache* bc) : fBC(bc) { bc->validate(); } argument
/external/v8/src/
H A Ddiy-fp.cc46 uint64_t bc = b * c; local
49 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
53 uint64_t result_f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32);
/external/netcat/data/
H A Ddata.c82 int bc = 0; local
95 bc = 1; /* preload, assuming "dump" */
163 bc = 0;
214 bc++;
220 if (bc >= sizeof (buf_raw)) /* buffer full */
225 x = write (1, buf_raw, bc);
245 printf ("%c %d\n", *p, bc);
247 printf (". %d\n", bc);
249 bc++;
/external/clang/test/SemaCXX/
H A Doverload-call-copycon.cpp28 void test_copycon2(A a, const A ac, B b, B const bc, B volatile bv) { argument
30 copycon2(bc); // expected-error{{no matching constructor}}
39 void test_copycon3(B b, const B bc) { argument
41 copycon3(bc); // expected-error{{no matching constructor}}
H A Dcxx0x-deleted-default-ctor.cpp54 bad_const bc; // expected-error {{call to deleted constructor}} variable
/external/qemu/audio/
H A Ddsound_template.h191 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
[all...]
/external/iproute2/ip/
H A Diplink_can.c216 struct can_berr_counter *bc = local
219 fprintf(f, "(berr-counter tx %d rx %d) ", bc->txerr, bc->rxerr);
/external/qemu/slirp/
H A Dbootp.c55 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
91 BOOTPClient *bc; local
155 BOOTPClient *bc = NULL; local
[all...]
/external/qemu/slirp-android/
H A Dbootp.c56 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
94 BOOTPClient *bc; local
160 BOOTPClient *bc = NULL; local
[all...]
/external/bzip2/
H A Dcompress.c241 Int32 v, t, i, j, gs, ge, totc, bt, bc, iter; local
399 bc = 999999999; bt = -1;
401 if (cost[t] < bc) { bc = cost[t]; bt = t; };
402 totc += bc;
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-var.cpp47 const Base bc, const Derived dc,
55 Base &br3 = bc; // expected-error{{drops qualifiers}}
46 bind_lvalue_to_lvalue(Base b, Derived d, const Base bc, const Derived dc, Diamond diamond, int i) argument
/external/libvpx/vp8/decoder/
H A Ddecodemv.c21 static int vp8_read_bmode(vp8_reader *bc, const vp8_prob *p) argument
23 const int i = vp8_treed_read(bc, vp8_bmode_tree, p);
29 static int vp8_read_ymode(vp8_reader *bc, const vp8_prob *p) argument
31 const int i = vp8_treed_read(bc, vp8_ymode_tree, p);
36 static int vp8_kfread_ymode(vp8_reader *bc, const vp8_prob *p) argument
38 const int i = vp8_treed_read(bc, vp8_kf_ymode_tree, p);
45 static int vp8_read_uv_mode(vp8_reader *bc, const vp8_prob *p) argument
47 const int i = vp8_treed_read(bc, vp8_uv_mode_tree, p);
67 vp8_reader *const bc = & pbi->bc; local
181 read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) argument
206 read_mv_ref(vp8_reader *bc, const vp8_prob *p) argument
213 sub_mv_ref(vp8_reader *bc, const vp8_prob *p) argument
244 vp8_reader *const bc = & pbi->bc; local
287 vp8_reader *const bc = & pbi->bc; local
[all...]
H A Ddecodframe.c297 static int get_delta_q(vp8_reader *bc, int prev, int *q_update) argument
301 if (vp8_read_bit(bc))
303 ret_val = vp8_read_literal(bc, 4);
305 if (vp8_read_bit(bc))
439 pc->multi_token_partition = (TOKEN_PARTITION)vp8_read_literal(&pbi->bc, 2);
570 vp8_reader *const bc = & pbi->bc; local
653 if (vp8dx_start_decode(bc, data, data_end - data))
657 pc->clr_type = (YUV_TYPE)vp8_read_bit(bc);
658 pc->clamp_type = (CLAMP_TYPE)vp8_read_bit(bc);
[all...]
H A Ddetokenize.c186 BOOL_DECODER *bc = x->current_bc; local
232 bufend = bc->user_buffer_end;
233 bufptr = bc->user_buffer;
234 value = bc->value;
235 count = bc->count;
236 range = bc->range;
365 bc->user_buffer = bufptr;
366 bc->value = value;
367 bc->count = count;
368 bc
[all...]
H A Donyxd_int.h76 vp8_reader bc, bc2; member in struct:VP8Decompressor
/external/clang/lib/Analysis/
H A DAnalysisContext.cpp315 BumpVectorContext &bc)
316 : BEVals(bevals), BC(bc) {}
314 FindBlockDeclRefExprsVals(BumpVector<const VarDecl*> &bevals, BumpVectorContext &bc) argument

Completed in 504 milliseconds

123