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

12 3 4 5 6 7 8 9

  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 39 B<char> bc; variable
  /external/compiler-rt/lib/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 };
  /hardware/broadcom/wlan/bcmdhd/bcmdhd_net_iface/
bcmdhd_net_iface.c 48 size_t bc = 0; local
56 bc += snprintf(&state.cmd[bc], sizeof(state.cmd) - bc, "%s ", argv[i]);
57 if (bc >= sizeof(state.cmd)) {
61 state.cmd[bc] = '\0';
  /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/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
evergreen_compute_internal.h 72 struct r600_bytecode bc; member in struct:r600_pipe_compute
  /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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 238 BlockCipher bc = null; local
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.transformBlock(ps.data, i * bc.getBlockSize(), dz, i * bc.getBlockSize())
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 95 BoneContext bc = new BoneContext(boneStructure, arbt, bonesPoseChannels, blenderContext); local
96 bc.buildBone(result, bonesOMAs, blenderContext);
  /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:__anon14550
  /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);
  /external/qemu/slirp/
bootp.c 55 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->allocated || !memcmp(macaddr, bc->macaddr, 6))
91 BOOTPClient *bc; local
155 BOOTPClient *bc = NULL; local
    [all...]
  /external/qemu/slirp-android/
bootp.c 56 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->allocated || !memcmp(macaddr, bc->macaddr, 6))
94 BOOTPClient *bc; local
160 BOOTPClient *bc = NULL; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 36 int br, bc, incr, mbr, mbc; local
91 for (bc = mbc; bc < mbc + 2; bc++) /* bc is the column counter in blocks */
95 if (br < pp_h && bc < pp_w)
99 * bc * 8 is the pixel column offset */
100 ptr = rec + (brwidth << 6) + (bc << 3);
103 index = brwidth + bc;
239 }/*bc*/
    [all...]

Completed in 587 milliseconds

12 3 4 5 6 7 8 9