HomeSort by relevance Sort by last modified time
    Searched defs:bc (Results 26 - 50 of 296) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/experimental/Intersection/
QuadraticSubDivide.cpp 37 double bc = interp(src[2], src[4], t); local
38 double abc = interp(ab, bc, t);
66 double bc = interp(src[2], src[4], t); local
70 dst[4] = interp(ab, bc, t);
71 dst[6] = bc;
CubicSubDivide.cpp 59 double bc = interp(src[2], src[4], t); local
61 double abc = interp(ab, bc, t);
62 double bcd = interp(bc, cd, t);
113 double bc = interp(src[2], src[4], t); local
115 double abc = interp(ab, bc, t);
116 double bcd = interp(bc, cd, t);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chv_filter.cpp 188 int br, bc, mbr, mbc; local
216 for (bc = mbc; bc < mbc + 2; bc++)
219 if (bc < pp_w) /* boundary : don't do it on the most right col block */
221 ptr = rec + (brwidth << 6) + (bc << 3);
222 jVal0 = brwidth + bc;
325 }/*bc*/
332 for (bc = mbc + 1; bc < mbc + 3; bc++
465 int br, bc, mbr, mbc; local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 224 BridgeContext bc = (BridgeContext) context; local
226 Object viewKey = getViewKeyFromParser(attrs, bc, mResourceReference, mIsInMerge);
228 bc.addViewKey(view, viewKey);
246 /*package*/ static Object getViewKeyFromParser(AttributeSet attrs, BridgeContext bc,
261 BridgeXmlBlockParser previousParser = bc.getPreviousParser();
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 39 B<char> bc; variable
  /external/compiler-rt/lib/builtins/ppc/
multc3.c 30 long double bc = __gcc_qmul(b,c); local
33 DD imag = { .ld = __gcc_qadd(ad,bc) };
67 DD bcDD = { .ld = bc };
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.h 42 struct r600_bytecode bc; member in struct:r600_shader
evergreen_compute_internal.h 72 struct r600_bytecode bc; member in struct:r600_pipe_compute
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 59 double bc = interp(src[2], src[4], t); local
61 double abc = interp(ab, bc, t);
62 double bcd = interp(bc, cd, t);
113 double bc = interp(src[2], src[4], t); local
115 double abc = interp(ab, bc, t);
116 double bcd = interp(bc, cd, t);
QuadraticReduceOrder.cpp 15 double bc = interp(b, c, t); local
16 return interp(ab, bc, t);
  /external/iproute2/ip/
iplink_can.c 216 struct can_berr_counter *bc = local
219 fprintf(f, "(berr-counter tx %d rx %d) ", bc->txerr, bc->rxerr);
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.h 42 struct r600_bytecode bc; member in struct:r600_shader
  /external/qemu/audio/
dsound_template.h 191 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.dwBufferBytes >> hw->info.shift
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
detokenize.c 172 BOOL_DECODER *bc = x->current_bc; local
197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16);
217 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr);
235 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_rgb9e5.h 106 float rc, gc, bc; local
112 bc = rgb9e5_ClampRange(rgb[2]);
114 maxrgb = MAX3(rc, gc, bc);
132 bm = (int) floor(bc / denom + 0.5);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_dynamic.c 136 unsigned bc[2]; local
138 memset(bc, 0, sizeof(bc));
145 bc[0] = _3DSTATE_CONST_BLEND_COLOR_CMD;
146 bc[1] = pack_ui32_float4(color[0],
152 set_dynamic_array(i915, I915_DYNAMIC_BC_0, bc, 2);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_context.c 255 struct pipe_blend_color bc = {{0}}; local
267 pipe->set_blend_color(pipe, &bc);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bytecode.c 42 yasm_bc_set_multiple(yasm_bytecode *bc, yasm_expr *e)
44 if (bc->multiple)
45 bc->multiple = yasm_expr_create_tree(bc->multiple, YASM_EXPR_MUL, e,
48 bc->multiple = e;
52 yasm_bc_finalize_common(yasm_bytecode *bc, yasm_bytecode *prev_bc)
57 yasm_bc_calc_len_common(yasm_bytecode *bc, yasm_bc_add_span_func add_span,
66 yasm_bc_expand_common(yasm_bytecode *bc, int span, long old_val, long new_val,
75 yasm_bc_tobytes_common(yasm_bytecode *bc, unsigned char **buf,
86 yasm_bc_transform(yasm_bytecode *bc, const yasm_bytecode_callback *callback
99 yasm_bytecode *bc = yasm_xmalloc(sizeof(yasm_bytecode)); local
    [all...]
linemap.c 51 /*@null@*/ /*@dependent@*/ yasm_bytecode *bc; member in struct:line_source_info
183 linemap->source_info[i].bc = NULL;
215 yasm_linemap_add_source(yasm_linemap *linemap, yasm_bytecode *bc,
225 linemap->source_info[i].bc = NULL;
235 linemap->source_info[linemap->current-1].bc = bc;
289 *bcp = linemap->source_info[line-1].bc;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 83 yasm_bytecode *bc, int warn, /*@null@*/ void *d)
92 switch (yasm_value_output_basic(value, buf, destsize, bc, warn,
103 if (info->next_reloc && info->next_reloc_addr == bc->offset+offset) {
124 valsize, 0, bc, 0);
134 valsize, 0, bc, 0);
146 yasm_bytecode *bc; local
163 while (!yasm_linemap_get_source(linemap, line, &bc, &source)) {
164 if (!bc) {
168 sect = yasm_bc_get_section(bc);
203 while (bc && bc->line == line)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parser-struct.h 35 yasm_bytecode *bc; member in union:__anon20267
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 172 BOOL_DECODER *bc = x->current_bc; local
197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16);
217 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr);
235 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgb9e5.h 106 float rc, gc, bc; local
112 bc = rgb9e5_ClampRange(rgb[2]);
114 maxrgb = MAX3(rc, gc, bc);
132 bm = (int) floor(bc / denom + 0.5);
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_dynamic.c 136 unsigned bc[2]; local
138 memset(bc, 0, sizeof(bc));
145 bc[0] = _3DSTATE_CONST_BLEND_COLOR_CMD;
146 bc[1] = pack_ui32_float4(color[0],
152 set_dynamic_array(i915, I915_DYNAMIC_BC_0, bc, 2);
  /external/mesa3d/src/gallium/drivers/r300/
r300_context.c 255 struct pipe_blend_color bc = {{0}}; local
267 pipe->set_blend_color(pipe, &bc);

Completed in 2143 milliseconds

12 3 4 5 6 7 8 91011>>