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

  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPjitter.cc 47 fpos_t cur_pos; local
50 if (!fid || fgetpos(fid, &cur_pos)) {
57 fsetpos(fid, &cur_pos);
  /external/google-breakpad/src/tools/linux/symupload/
sym_upload.cc 69 string::size_type cur_pos = 0, next_pos = 0; local
70 while ((next_pos = source_string.find(c, cur_pos)) != string::npos) {
71 if (next_pos != cur_pos)
72 results->push_back(source_string.substr(cur_pos, next_pos - cur_pos));
73 cur_pos = next_pos + 1;
75 if (cur_pos < source_string.size() && next_pos != cur_pos)
76 results->push_back(source_string.substr(cur_pos));
  /external/webp/src/enc/
backward_references.h 163 PixOrCopy* cur_pos; // current position member in struct:__anon26145
173 return (c->cur_pos != NULL);
181 if (++c->cur_pos == c->last_pos_) VP8LRefsCursorNextBlock(c);
  /system/bt/bta/av/
bta_av_sbc.c 37 INT32 cur_pos; /* current position */ member in struct:__anon72782
66 bta_av_sbc_ups_cb.cur_pos = -1;
175 while (bta_av_sbc_ups_cb.cur_pos > 0 && dst_samples)
180 bta_av_sbc_ups_cb.cur_pos -= src_sps;
184 bta_av_sbc_ups_cb.cur_pos = dst_sps;
196 bta_av_sbc_ups_cb.cur_pos -= src_sps;
198 } while (bta_av_sbc_ups_cb.cur_pos > 0 && dst_samples);
200 bta_av_sbc_ups_cb.cur_pos += dst_sps;
203 if (bta_av_sbc_ups_cb.cur_pos == (INT32)dst_sps)
204 bta_av_sbc_ups_cb.cur_pos = 0
    [all...]
  /cts/tools/dasm/src/dasm/
Scanner.java 43 private int cur_pos = 0; field in class:Scanner.CharBuffer
53 buffer[cur_pos] = c;
54 cur_pos++;
55 if (cur_pos == buffer_size) expand();
59 return cur_pos;
67 return new String(buffer, 0, cur_pos);
71 cur_pos = 0;
  /system/bt/bta/dm/
bta_dm_sco.c 58 UINT32 cur_pos; /* current position */ member in struct:__anon72861
594 p_cb->cur_pos = src_sps / 2;
645 APPL_TRACE_DEBUG("bta_pcm_init_dwn_sample: cur_pos %d, src_sps %d", \
646 p_cb->cur_pos, p_cb->src_sps);
681 bta_dm_pcm_cb.src_sps, (INT32 *) &bta_dm_pcm_cb.cur_pos, bta_dm_pcm_cb.overlap_area);
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 73 static uint64_t cur_pos = 0; variable
106 size += cur_pos;
116 memcpy(&write_buffer[cur_pos], s, len);
117 cur_pos += len;
145 val = *(uint32_t*)&write_buffer[cur_pos];
146 cur_pos += 4;
156 val = *(uint64_t*)&write_buffer[cur_pos];
157 cur_pos += 8;
286 cur_pos = 0;
367 uint64_t save_cur_pos = cur_pos;
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 105 inline hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; } function in struct:hb_buffer_t
106 inline hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; } function in struct:hb_buffer_t
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 314 size_t cur_pos = 0; local
317 while ( (next_pos = src.find_first_of('\n', cur_pos)) != std::string::npos) {
318 ALOGE("%03zd : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
319 cur_pos = next_pos + 1;
322 ALOGE("%03zu : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
    [all...]
  /external/freetype/src/pshinter/
pshalgo.h 55 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pshinter/
pshalgo.h 55 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 653 FX_FLOAT cur_pos = 0; local
657 pCharPos[i - 1] = cur_pos;
659 cur_pos += pFont->GetCharWidthF(pCharCodes[i]) * font_size / 1000;
  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.h 55 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/curl/lib/
ftp.c 4251 const char *cur_pos; local
    [all...]
  /art/compiler/
image_writer.cc 1593 size_t cur_pos = RoundUp(dex_cache_arrays_section->End(), sizeof(uint64_t)); local
    [all...]

Completed in 554 milliseconds