/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
MoveHandler.java | 79 Rect bc = child.getBounds(); local 80 if (bc.isValid()) { 87 if (bc.equals(element.getBounds())) {
|
/external/aac/libMpegTPDec/src/ |
tpdec_asc.cpp | 470 int cc = 0, fc = 0, sc = 0, bc = 0, lc = 0, ec = 0; /* Channel and element counters */ local 524 chIndex[cc] = bc; 528 chIndex[cc+1] = bc+1; 535 cc+=2; bc+=2; 537 cc++; bc++; [all...] |
/external/bzip2/ |
compress.c | 241 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/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/ |
t_dd_tritmp.h | 237 GLfloat bc = b * ic; local 239 if ( bc < 0.0f ) bc = -bc; 240 offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor / ctx->DrawBuffer->_MRD; 470 GLfloat bc = b * ic; local 472 if ( bc < 0.0f ) bc = -bc; 473 offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor / ctx->DrawBuffer->_MRD [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bc-data.c | 68 static void bc_data_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc); 69 static int bc_data_item_size(yasm_bytecode *bc); 70 static int bc_data_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span, 72 static int bc_data_tobytes(yasm_bytecode *bc, unsigned char **bufp, 107 bc_data_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc) 109 bytecode_data *bc_data = (bytecode_data *)bc->contents; 156 bc_data_item_size(yasm_bytecode *bc) 158 bytecode_data *bc_data = (bytecode_data *)bc->contents; 163 bc_data_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span, 166 bytecode_data *bc_data = (bytecode_data *)bc->contents 267 yasm_bytecode *bc = yasm_bc_create_common(&bc_data_callback, data, line); local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
dwarf2-dbgfmt.c | 46 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data); 48 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d, 140 yasm_dwarf2__append_bc(yasm_section *sect, yasm_bytecode *bc) 143 bc->offset = yasm_bc_next_offset(precbc); 144 yasm_section_bcs_append(sect, bc); 178 yasm_dwarf2__bc_sym(yasm_symtab *symtab, yasm_bytecode *bc) 181 if (bc->symrecs && bc->symrecs[0]) 182 sym = bc->symrecs[0]; 184 sym = yasm_symtab_define_label(symtab, ".bcsym", bc, 0, 0) 194 yasm_bytecode *bc; local [all...] |
dwarf2-dbgfmt.h | 81 yasm_bytecode *bc; /* first bytecode following */ member in struct:dwarf2_loc 95 yasm_bytecode *yasm_dwarf2__append_bc(yasm_section *sect, yasm_bytecode *bc); 98 yasm_bytecode *bc);
|
/external/clang/test/SemaCXX/ |
cxx0x-deleted-default-ctor.cpp | 54 bad_const bc; // expected-error {{call to implicitly-deleted default constructor}} variable
|
/external/libgsm/src/ |
long_term.c | 23 * 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 [all...] |
/external/mesa3d/src/mesa/tnl_dd/ |
t_dd_tritmp.h | 237 GLfloat bc = b * ic; local 239 if ( bc < 0.0f ) bc = -bc; 240 offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor / ctx->DrawBuffer->_MRD; 470 GLfloat bc = b * ic; local 472 if ( bc < 0.0f ) bc = -bc; 473 offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor / ctx->DrawBuffer->_MRD [all...] |
/frameworks/native/opengl/libs/EGL/ |
egl_cache.cpp | 143 sp<BlobCache> bc = getBlobCacheLocked(); local 144 bc->set(key, keySize, value, valueSize); 182 sp<BlobCache> bc = getBlobCacheLocked(); local 183 return bc->get(key, keySize, value, valueSize);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
Extensions.java | 258 BasicConstraints bc = extension.getBasicConstraintsValue(); local 259 if (bc == null || !bc.getCa()) { 262 return bc.getPathLenConstraint();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
LinearLayoutRule.java | 301 Rect bc = it.getBounds(); local 302 if (bc.isValid()) { 321 int v = isVertical ? bc.y + (bc.h / 2) : bc.x + (bc.w / 2); 332 int v = isVertical ? bc.y : bc.x; 337 last = isVertical ? (bc.y + bc.h) : (bc.x + bc.w) [all...] |
/external/ceres-solver/include/ceres/ |
rotation.h | 493 T bc = b * c; local 499 R(0, 0) = aa + bb - cc - dd; R(0, 1) = T(2) * (bc - ad); R(0, 2) = T(2) * (ac + bd); // NOLINT 500 R(1, 0) = T(2) * (ad + bc); R(1, 1) = aa - bb + cc - dd; R(1, 2) = T(2) * (cd - ab); // NOLINT
|
/external/ceres-solver/internal/ceres/ |
autodiff_test.cc | 114 A bc = b*c; local 120 R(0, 0) = aa+bb-cc-dd; R(0, 1) = A(2)*(bc-ad); R(0, 2) = A(2)*(ac+bd); // NOLINT 121 R(1, 0) = A(2)*(ad+bc); R(1, 1) = aa-bb+cc-dd; R(1, 2) = A(2)*(cd-ab); // NOLINT
|
rotation_test.cc | 874 double bc[4]; local 876 QuaternionProduct(b, c, bc); 877 QuaternionProduct(a, bc, a_bc);
|
/external/chromium_org/third_party/skia/src/core/ |
SkGeometry.cpp | 91 float bc = b - c; local 93 bc = -bc; 94 return ab == 0 || bc < 0; 207 SkScalar bc = SkScalarInterp(src[2], src[4], t); 208 return SkScalarInterp(ab, bc, t); 259 SkScalar bc = SkScalarInterp(src[2], src[4], t); local 263 dst[4] = SkScalarInterp(ab, bc, t); 264 dst[6] = bc; 499 SkScalar bc = SkScalarInterp(src[2], src[4], t) 572 SkScalar bc = SkScalarInterp(src[2], src[4], t); local [all...] |
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsQuad.cpp | 209 double bc = SkDInterp(src[2], src[4], t); local 210 double abc = SkDInterp(ab, bc, t); 284 double bc = SkDInterp(src[2], src[4], t); local 287 dst[4] = SkDInterp(ab, bc, t); 288 dst[6] = bc;
|
/external/libvpx/libvpx/vp8/decoder/ |
decodemv.c | 21 static B_PREDICTION_MODE read_bmode(vp8_reader *bc, const vp8_prob *p) 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) 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) 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) 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_prob) 153 vp8_reader *const bc = & pbi->mbc[8]; local 341 vp8_reader *const bc = & pbi->mbc[8]; local [all...] |
/external/skia/src/core/ |
SkGeometry.cpp | 91 float bc = b - c; local 93 bc = -bc; 94 return ab == 0 || bc < 0; 207 SkScalar bc = SkScalarInterp(src[2], src[4], t); 208 return SkScalarInterp(ab, bc, t); 259 SkScalar bc = SkScalarInterp(src[2], src[4], t); local 263 dst[4] = SkScalarInterp(ab, bc, t); 264 dst[6] = bc; 499 SkScalar bc = SkScalarInterp(src[2], src[4], t) 572 SkScalar bc = SkScalarInterp(src[2], src[4], t); local [all...] |
/external/skia/src/pathops/ |
SkPathOpsQuad.cpp | 209 double bc = SkDInterp(src[2], src[4], t); local 210 double abc = SkDInterp(ab, bc, t); 284 double bc = SkDInterp(src[2], src[4], t); local 287 dst[4] = SkDInterp(ab, bc, t); 288 dst[6] = bc;
|
/prebuilts/devtools/tools/lib/ |
bcpkix-jdk15on-1.48.jar | |
/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...] |