Searched refs:bc (Results 1 - 25 of 160) sorted by relevance

1234567

/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/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/skia/legacy/src/effects/
H A DSkBitmapCache.h42 AutoValidate(const SkBitmapCache* bc) : fBC(bc) { bc->validate(); } argument
/external/skia/src/effects/gradients/
H A DSkBitmapCache.h42 AutoValidate(const SkBitmapCache* bc) : fBC(bc) { bc->validate(); } argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DCTRMode.java18 BlockCipher bc; field in class:CTRMode
30 bc = tc;
31 blockSize = bc.getBlockSize();
50 bc.transformBlock(X, 0, Xenc, 0);
H A DBlockCipherFactory.java79 BlockCipher bc = (BlockCipher) cc.newInstance();
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/llvm/test/CodeGen/Generic/
H A DMakefile3 %.bc: %.ll
6 %.llc.s: %.bc
22 rm -f $(patsubst %.clean,%.bc,$@) $(patsubst %.clean,%.*.s,$@) \
/external/libvpx/libvpx/vp8/decoder/
H A Ddecodemv.c21 static B_PREDICTION_MODE read_bmode(vp8_reader *bc, const vp8_prob *p) argument
23 const int i = vp8_treed_read(bc, vp8_bmode_tree, p);
28 static MB_PREDICTION_MODE read_ymode(vp8_reader *bc, const vp8_prob *p) argument
30 const int i = vp8_treed_read(bc, vp8_ymode_tree, p);
35 static MB_PREDICTION_MODE read_kf_ymode(vp8_reader *bc, const vp8_prob *p) argument
37 const int i = vp8_treed_read(bc, vp8_kf_ymode_tree, p);
42 static MB_PREDICTION_MODE read_uv_mode(vp8_reader *bc, const vp8_prob *p) argument
44 const int i = vp8_treed_read(bc, vp8_uv_mode_tree, p);
51 vp8_reader *const bc = & pbi->mbc[8]; local
55 mi->mbmi.mode = read_kf_ymode(bc, vp8_kf_ymode_pro
118 read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) argument
153 vp8_reader *const bc = & pbi->mbc[8]; local
230 decode_split_mv(vp8_reader *const bc, MODE_INFO *mi, const MODE_INFO *left_mb, const MODE_INFO *above_mb, MB_MODE_INFO *mbmi, int_mv best_mv, MV_CONTEXT *const mvc, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
341 vp8_reader *const bc = & pbi->mbc[8]; local
[all...]
H A Ddecodframe.c286 static int get_delta_q(vp8_reader *bc, int prev, int *q_update) argument
290 if (vp8_read_bit(bc))
292 ret_val = vp8_read_literal(bc, 4);
294 if (vp8_read_bit(bc))
982 vp8_reader *const bc = & pbi->mbc[8]; local
1074 if (vp8dx_start_decode(bc, data, (unsigned int)(data_end - data)))
1078 pc->clr_type = (YUV_TYPE)vp8_read_bit(bc);
1079 pc->clamp_type = (CLAMP_TYPE)vp8_read_bit(bc);
1083 xd->segmentation_enabled = (unsigned char)vp8_read_bit(bc);
1088 xd->update_mb_segmentation_map = (unsigned char)vp8_read_bit(bc);
[all...]
/external/v8/src/
H A Ddiy-fp.cc47 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);
/external/libvpx/libvpx/vp8/encoder/
H A Dbitstream.c113 vp8_writer *const w = cpi->bc;
135 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p) argument
137 vp8_write_token(bc, vp8_ymode_tree, p, vp8_ymode_encodings + m);
140 static void kfwrite_ymode(vp8_writer *bc, int m, const vp8_prob *p) argument
142 vp8_write_token(bc, vp8_kf_ymode_tree, p, vp8_kf_ymode_encodings + m);
145 static void write_uv_mode(vp8_writer *bc, int m, const vp8_prob *p) argument
147 vp8_write_token(bc, vp8_uv_mode_tree, p, vp8_uv_mode_encodings + m);
151 static void write_bmode(vp8_writer *bc, int m, const vp8_prob *p) argument
153 vp8_write_token(bc, vp8_bmode_tree, p, vp8_bmode_encodings + m);
156 static void write_split(vp8_writer *bc, in argument
721 vp8_writer *const bc = cpi->bc; local
1245 put_delta_q(vp8_writer *bc, int delta_q) argument
1266 vp8_writer *const bc = cpi->bc; local
[all...]
/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}}
/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 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...]
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_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...]
/external/llvm/test/
H A DMakefile.tests31 .PRECIOUS: Output/%.bc Output/%.ll
34 .PRECIOUS: Output/%.llvm.bc
62 # LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come
65 Output/%.bc: Output/%.ll $(LGCCAS)
68 # LLVM Assemble from X.ll to Output/X.bc. Because we are coming directly from
71 Output/%.bc: %.ll $(LLVMAS) Output/.dir
/external/valgrind/main/none/tests/s390x/
H A Dtroo.stdout.exp8 the translated values are ff bb dd ab ca bc cc da ea aa
14 the translated values are ff bb dd ab ca bc cc da
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/bc/
H A DBCObjectIdentifiers.java1 package org.bouncycastle.asn1.bc;
12 public static final ASN1ObjectIdentifier bc = new ASN1ObjectIdentifier("1.3.6.1.4.1.22554"); field in interface:BCObjectIdentifiers
17 public static final ASN1ObjectIdentifier bc_pbe = new ASN1ObjectIdentifier(bc.getId() + ".1");
/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/llvm/utils/
H A Dllvm-native-gcc40 } elsif ($ARGV[$i] =~ /\.bc$/) {
75 $def =~ s/\.bc$/.$Backend/;
99 $LinkedBCFile = "${FinalOutputFileName}.llvm.bc";
101 $LinkedBCFile = "/tmp/nativebuild-$$.llvm.bc";
139 my $BCFile = "${OutputFile}.llvm.bc";
143 run "mv ${OutputFile}.bc $BCFile";
158 run "rm ${OutputFile}.llvm.bc $GeneratedCode"
H A Dllvm-native-gxx40 } elsif ($ARGV[$i] =~ /\.bc$/) {
75 $def =~ s/\.bc$/.$Backend/;
99 $LinkedBCFile = "${FinalOutputFileName}.llvm.bc";
101 $LinkedBCFile = "/tmp/nativebuild-$$.llvm.bc";
139 my $BCFile = "${OutputFile}.llvm.bc";
143 run "mv ${OutputFile}.bc $BCFile";
158 run "rm ${OutputFile}.llvm.bc $GeneratedCode"
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DPEMDecoder.java238 BlockCipher bc = null;
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
[all...]

Completed in 806 milliseconds

1234567