HomeSort by relevance Sort by last modified time
    Searched defs:buffer_idx (Results 1 - 9 of 9) sorted by null

  /external/google-breakpad/src/common/mac/
file_id.cc 87 int buffer_idx = 0; local
88 for (int idx = 0; (buffer_idx < buffer_length) && (idx < 16); ++idx) {
93 buffer[buffer_idx++] = '-';
95 buffer[buffer_idx++] =
97 buffer[buffer_idx++] =
102 buffer[(buffer_idx < buffer_length) ? buffer_idx : buffer_idx - 1] = 0;
  /external/google-breakpad/src/common/linux/
file_id.cc 173 int buffer_idx = 0; local
175 (buffer_idx < buffer_length) && (idx < kMDGUIDSize);
181 buffer[buffer_idx++] = '-';
183 buffer[buffer_idx++] = (hi >= 10) ? 'A' + hi - 10 : '0' + hi;
184 buffer[buffer_idx++] = (lo >= 10) ? 'A' + lo - 10 : '0' + lo;
188 buffer[(buffer_idx < buffer_length) ? buffer_idx : buffer_idx - 1] = 0;
  /external/google-breakpad/src/common/solaris/
file_id.cc 179 int buffer_idx = 0; local
184 buffer[buffer_idx++] = (hi >= 10) ? 'A' + hi - 10 : '0' + hi;
185 buffer[buffer_idx++] = (lo >= 10) ? 'A' + lo - 10 : '0' + lo;
189 buffer[buffer_idx++] = '0';
192 buffer[buffer_idx] = 0;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_h264_parser.c 432 int buffer_idx; local
451 for (buffer_idx = 0; buffer_idx < dpb->ref_frames_in_buffer; buffer_idx++)
459 store = &dpb->fs[dpb->fs_ref_idc[buffer_idx]];
491 for (buffer_idx = 0; buffer_idx < dpb->ltref_frames_in_buffer; buffer_idx++)
498 store = &dpb->fs[dpb->fs_ltref_idc[buffer_idx]];
    [all...]
  /hardware/intel/img/psb_video/src/
tng_vld_dec.c 198 int buffer_idx = 0; local
220 while (buffer_idx < ctx->slice_param_list_idx) {
221 object_buffer_p slice_buf = ctx->slice_param_list[buffer_idx];
225 buffer_idx++;
  /hardware/intel/img/psb_video/src/mrst/
psb_MPEG2.c 1371 int buffer_idx = 0; local
    [all...]
psb_MPEG4.c 1335 int buffer_idx = 0; local
    [all...]
psb_H264.c 1703 int buffer_idx = 0; local
    [all...]
psb_VC1.c 2593 int buffer_idx = 0; local
    [all...]

Completed in 312 milliseconds