HomeSort by relevance Sort by last modified time
    Searched defs:bc (Results 101 - 125 of 314) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4c/source/test/letest/
sfnt.h 267 le_uint32 bc; member in struct:BigDate
  /external/icu/icu4c/source/test/perf/leperf/
sfnt.h 267 le_uint32 bc; member in struct:BigDate
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
SpoofCheckerTest.java 678 int bc = comparator.compare(b,c); local
681 ab < 0 && bc < 0 && ca <= 0)) {
687 ab < 0 && bc < 0 && ca <= 0);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 166 Bytecode bc = (Bytecode)super.clone(); local
167 bc.tryblocks = (ExceptionTable)tryblocks.clone();
168 return bc;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c 112 vp8_writer *const w = cpi->bc;
134 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p)
136 vp8_write_token(bc, vp8_ymode_tree, p, vp8_ymode_encodings + m);
139 static void kfwrite_ymode(vp8_writer *bc, int m, const vp8_prob *p)
141 vp8_write_token(bc, vp8_kf_ymode_tree, p, vp8_kf_ymode_encodings + m);
144 static void write_uv_mode(vp8_writer *bc, int m, const vp8_prob *p)
146 vp8_write_token(bc, vp8_uv_mode_tree, p, vp8_uv_mode_encodings + m);
150 static void write_bmode(vp8_writer *bc, int m, const vp8_prob *p)
152 vp8_write_token(bc, vp8_bmode_tree, p, vp8_bmode_encodings + m);
155 static void write_split(vp8_writer *bc, int x
722 vp8_writer *const bc = cpi->bc; local
1273 vp8_writer *const bc = cpi->bc; local
    [all...]
  /external/mesa3d/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/mesa3d/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...]
r600_shader.c 70 pipe_buffer_create(ctx->screen, PIPE_BIND_CUSTOM, PIPE_USAGE_IMMUTABLE, rshader->bc.ndw * 4);
76 for (i = 0; i < rshader->bc.ndw; ++i) {
77 ptr[i] = bswap_32(rshader->bc.bytecode[i]);
80 memcpy(ptr, rshader->bc.bytecode, rshader->bc.ndw * sizeof(*ptr));
144 r = r600_bytecode_build(&shader->shader.bc);
150 r600_bytecode_dump(&shader->shader.bc);
159 r600_bytecode_clear(&shader->shader.bc);
184 struct r600_bytecode *bc; member in struct:r600_shader_ctx
245 shader_ctx.bc = bytecode
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_main.cpp 1223 int fc, fm, fy, fk, bc, bm, by, bk; local
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 28 SkScalar bc = b - c; local
30 bc = -bc;
32 return ab == 0 || bc < 0;
310 SkScalar bc = SkScalarInterp(src[2], src[4], t);
312 SkScalar abc = SkScalarInterp(ab, bc, t);
313 SkScalar bcd = SkScalarInterp(bc, cd, t);
403 Sk2s bc = interp(p1, p2, tt);
405 Sk2s abc = interp(ab, bc, tt);
406 Sk2s bcd = interp(bc, cd, tt)
965 SkScalar bc = SkScalarInterp(src[3], src[6], t); local
    [all...]
  /frameworks/rs/
rsAllocation.cpp 609 sp<IGraphicBufferConsumer> bc; local
610 BufferQueue::createBufferQueue(&mGraphicBufferProducer, &bc);
611 mGrallocConsumer = new GrallocConsumer(this, bc, mHal.drvState.grallocFlags, numAlloc);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
bitstream.c 113 vp8_writer *const w = cpi->bc;
135 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p)
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)
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)
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)
153 vp8_write_token(bc, vp8_bmode_tree, p, vp8_bmode_encodings + m);
156 static void write_split(vp8_writer *bc, int x
721 vp8_writer *const bc = cpi->bc; local
1272 vp8_writer *const bc = cpi->bc; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 190 bc = c; \
227 if (tr != br && tc != bc) { \
229 kc = bc - tc; \
232 } else if (tr == br && tc != bc) { \
233 kc = bc - tc; \
246 } else if (tr != br && tc == bc) { \
291 int bc = bestmv->col * 8; local
299 int tc = bc;
316 tc = bc;
326 tc = bc;
390 int bc = bestmv->col * 8; local
517 int br, bc; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
resbin.c 1403 struct bin_cursor bc; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/fr30/
allinsn.s 211 .global bc
212 bc: label
213 bc footext
274 bc:d delay_footext
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 2318 long bc = b * c; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 238 BasicConstraints bc = null; local
241 bc = BasicConstraints.getInstance(CertPathValidatorUtilities.getExtensionValue((X509Extension)cert,
252 if (idp.onlyContainsUserCerts() && (bc != null && bc.isCA()))
258 if (idp.onlyContainsCACerts() && (bc == null || !bc.isCA()))
2114 BasicConstraints bc = null; local
2173 BasicConstraints bc = null; local
    [all...]
  /external/curl/lib/
url.c 3008 struct conncache *bc = data->state.conn_cache; local
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MapBinderTest.java 468 Module bc = new AbstractModule() { local
477 Injector injector = Guice.createInjector(ab, bc);
480 assertMapVisitor(Key.get(mapOfString), stringType, stringType, setOf(ab, bc), BOTH, true, 0,
    [all...]
MultibinderTest.java 429 Module bc = new AbstractModule() { local
437 Injector injector = Guice.createInjector(ab, bc);
440 assertSetVisitor(Key.get(setOfString), stringType, setOf(ab, bc), BOTH, true, 0,
453 Module bc = new AbstractModule() { local
461 Injector injector = Guice.createInjector(ab, bc);
464 assertSetVisitor(Key.get(setOfString), stringType, setOf(ab, bc), BOTH, true, 0,
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Intersector.java 56 float bc = v1.dot(v2); local
59 if (bc * ac - cc * ab < 0) return false;
61 if (ab * bc - ac * bb < 0) return false;
    [all...]
  /external/libpng/
pngrtran.c 2998 PNG_CONST png_uint_32 bc = 32768 - rc - gc; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
row_common.cc 2513 uint32 bc = lumacoeff & 0xff; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 187 bc = c; \
224 if (tr != br && tc != bc) { \
226 kc = bc - tc; \
229 } else if (tr == br && tc != bc) { \
230 kc = bc - tc; \
243 } else if (tr != br && tc == bc) { \
267 int bc0 = bc; \
268 assert(tr == br || tc == bc); \
269 if (tr == br && tc != bc) { \
270 kc = bc - tc;
669 int bc = bestmv->col * 8; local
837 int bc = best_mv->col; local
901 int br, bc; local
1076 int br, bc; local
    [all...]
  /external/libyuv/files/source/
row_common.cc 2337 uint32 bc = lumacoeff & 0xff; local
    [all...]

Completed in 1003 milliseconds

1 2 3 45 6 7 8 91011>>