/prebuilts/tools/common/m2/repository/org/bouncycastle/bcpkix-jdk15on/1.48/ |
bcpkix-jdk15on-1.48.jar | |
/external/javassist/src/main/javassist/compiler/ |
MemberCodeGen.java | 189 Bytecode bc = bytecode; local 202 int start = bc.currentPc(); 204 int end = bc.currentPc(); 210 bc.addOpcode(Opcode.GOTO); 211 gotoList.add(new Integer(bc.currentPc())); 212 bc.addIndex(0); // correct later 228 bc.addExceptionHandler(start, end, bc.currentPc(), type); 229 bc.growStack(1); 230 bc.addAstore(var) 275 Bytecode bc = bytecode; local [all...] |
CodeGen.java | 649 Bytecode bc = bytecode; local 650 final int var = bc.getMaxLocals(); 651 bc.incMaxLocals(1); 652 bc.addOpcode(DUP); 653 bc.addAstore(var); 654 bc.addOpcode(MONITORENTER); 664 int pc = bc.currentPc(); 669 int pc2 = bc.currentPc(); 672 rh.doit(bc, 0); // the 2nd arg is ignored. 673 bc.addOpcode(Opcode.GOTO) [all...] |
/external/chromium_org/chrome_frame/ |
protocol_sink_wrap.cc | 976 base::win::ScopedComPtr<IBindCtx> bc; local [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 588 bc = basechar variable 589 """if sequence[-1] == "dead_tilde" and (bc >= 0x370 and bc <= 0x3ff) or (bc >= 0x1f00 and bc <= 0x1fff): 592 if sequence[-1] == "dead_horn" and (bc >= 0x370 and bc <= 0x3ff) or (bc >= 0x1f00 and bc <= 0x1fff): 595 if sequence[-1] == "dead_ogonek" and (bc >= 0x370 and bc <= 0x3ff) or (bc >= 0x1f00 and bc <= 0x1fff) [all...] |
/external/chromium_org/third_party/icu/source/test/letest/ |
FontObject.h | 105 le_uint32 bc; member in struct:BigDate
|
sfnt.h | 267 le_uint32 bc; member in struct:BigDate
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsCubic.cpp | 383 double bc = SkDInterp(src[2], src[4], t); local 385 double abc = SkDInterp(ab, bc, t); 386 double bcd = SkDInterp(bc, cd, t); 475 double bc = SkDInterp(src[2], src[4], t); local 477 double abc = SkDInterp(ab, bc, t); 478 double bcd = SkDInterp(bc, cd, t);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/ |
stabs-dbgfmt.c | 119 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 121 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 129 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 131 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 182 yasm_bytecode *bc; local 184 bc = yasm_bc_create_common(&stabs_bc_str_callback, yasm__xstrdup(str), 0); 185 bc->len = (unsigned long)(strlen(str)+1); 186 bc->offset = yasm_bc_next_offset(yasm_section_bcs_last(sect)); 188 yasm_section_bcs_append(sect, bc); 190 return bc; 202 yasm_bytecode *bc; local 301 yasm_bytecode *bc = yasm_section_bcs_last(sect); local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/ |
gas-parser.h | 58 yasm_bytecode *bc; member in union:__anon16402
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/ |
nasm-parse.c | 125 yasm_bc_destroy(curval.bc); 220 yasm_bytecode *bc = NULL, *temp_bc; local 231 bc = parse_line(parser_nasm); 240 if (bc) { 243 numitems = yasm_bc_reserve_numitems(bc, &itemsize); 250 multiple = yasm_bc_get_multiple_expr(bc); 260 yasm_bc_destroy(bc); 263 } else if (bc) { 264 temp_bc = yasm_section_bcs_append(cursect, bc); 287 yasm_bytecode *bc; local 542 yasm_bytecode *bc; local 564 yasm_bytecode *bc; local 736 yasm_bytecode *bc; local 1663 yasm_bytecode *bc = NULL; local [all...] |
/external/icu4c/samples/layout/ |
sfnt.h | 142 le_uint32 bc; member in struct:BigDate
|
/external/icu4c/test/letest/ |
FontObject.h | 105 le_uint32 bc; member in struct:BigDate
|
/external/libvpx/libvpx/vp8/decoder/ |
decodframe.c | 280 static int get_delta_q(vp8_reader *bc, int prev, int *q_update) 284 if (vp8_read_bit(bc)) 286 ret_val = vp8_read_literal(bc, 4); 288 if (vp8_read_bit(bc)) 982 vp8_reader *const bc = &pbi->mbc[8]; local [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
encodeframe.c | 398 w= &cpi->bc[1 + (mb_row % num_part)]; 400 w = &cpi->bc[1]; 723 BOOL_CODER * bc = &cpi->bc[1]; /* bc[0] is for control partition */ local 791 vp8_start_encode(&bc[i], cpi->partition_d[i + 1], 793 bc[i].error = &cm->error; 938 vp8_stop_encode(&bc[i]); 939 cpi->partition_sz[i+1] = bc[i].pos; 1064 int br, bc; local [all...] |
mcomp.c | 201 #define CHECK_BETTER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr) { besterr = v; br=r; bc=c; *distortion = thismse; *sse1 = sse; }}, v=UINT_MAX;) 213 int br = bestmv->as_mv.row * 4, bc = bestmv->as_mv.col * 4; local 214 int tr = br, tc = bc; 299 if (tr == br && tc == bc) 303 tc = bc; 337 if (tr == br && tc == bc) 341 tc = bc; 345 bestmv->as_mv.col = bc * 2; 814 all_in &= ((bc-range) >= x->mv_col_min);\ 815 all_in &= ((bc+range) <= x->mv_col_max); 874 int br, bc; local [all...] |
/external/skia/src/pathops/ |
SkPathOpsCubic.cpp | 383 double bc = SkDInterp(src[2], src[4], t); local 385 double abc = SkDInterp(ab, bc, t); 386 double bcd = SkDInterp(bc, cd, t); 475 double bc = SkDInterp(src[2], src[4], t); local 477 double abc = SkDInterp(ab, bc, t); 478 double bcd = SkDInterp(bc, cd, t);
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
InstructionCodec.java | 279 int bc = in.read(); local 280 int b = byte0(bc); 281 int c = byte1(bc); 300 int bc = in.read(); local 301 int b = byte0(bc); 302 int literal = (byte) byte1(bc); // sign-extend [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 1 package org.bouncycastle.jcajce.provider.keystore.bc;
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
StringImpl.cpp | 940 LChar bc = *b++; local 941 if (foldCase(*a++) != foldCase(bc)) 950 LChar bc = *b++; local 951 if (foldCase(*a++) != foldCase(bc)) 1822 LChar bc = b[i]; local 1835 LChar bc = b[i]; local 1879 LChar bc = b[i]; local 1899 LChar bc = b[i]; local [all...] |
/external/chromium_org/third_party/libpng/ |
pngrtran.c | 2345 png_uint_32 bc = png_ptr->rgb_to_gray_blue_coeff; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_emit.c | 62 struct r300_blend_color_state* bc = (struct r300_blend_color_state*)state; local 65 WRITE_CS_TABLE(bc->cb, size); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_asm.c | 36 static inline unsigned int r600_bytecode_get_num_operands(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) 41 switch (bc->chip_class) { 212 int r700_bytecode_alu_build(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned id); 257 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family family) 261 bc->ar_handling = AR_HANDLE_RV6XX; 262 bc->r6xx_nop_after_rel_dst = 1; 264 bc->ar_handling = AR_HANDLE_NORMAL; 265 bc->r6xx_nop_after_rel_dst = 0; 268 LIST_INITHEAD(&bc->cf); 269 bc->chip_class = chip_class 2754 struct r600_bytecode bc; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
section.c | 308 yasm_bytecode *bc; local 335 bc = yasm_bc_create_common(NULL, NULL, 0); 336 bc->section = s; 337 bc->offset = 0; 338 STAILQ_INSERT_TAIL(&s->bcs, bc, link); 607 yasm_section_bcs_append(yasm_section *sect, yasm_bytecode *bc) 609 if (bc) { 610 if (bc->callback) { 611 bc->section = sect; /* record parent section */ 612 STAILQ_INSERT_TAIL(§->bcs, bc, link) 827 \/*@dependent@*\/ yasm_bytecode *bc; member in struct:yasm_offset_setter 844 \/*@dependent@*\/ yasm_bytecode *bc; member in struct:yasm_span 1061 yasm_bytecode *bc = STAILQ_FIRST(§->bcs); local 1313 yasm_bytecode *bc = STAILQ_FIRST(§->bcs); local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
cv-symline.c | 163 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 165 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 173 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 175 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 183 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 185 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 192 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 194 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 256 yasm_bytecode *bc; local 263 bc = yasm_bc_create_common(&cv_sym_bc_callback, cvs, 0) 273 yasm_bytecode *bc; local 302 yasm_bytecode *bc; local 320 yasm_bytecode *bc; local 403 yasm_bytecode *bc; local 563 yasm_bytecode *bc; local 683 yasm_bytecode *bc; local 769 yasm_bytecode *bc; local [all...] |