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

  /external/bluetooth/bluedroid/bta/av/
bta_av_sbc.c 36 INT32 cur_pos; /* current position */ member in struct:__anon2867
65 bta_av_sbc_ups_cb.cur_pos = -1;
174 while (bta_av_sbc_ups_cb.cur_pos > 0 && dst_samples)
179 bta_av_sbc_ups_cb.cur_pos -= src_sps;
183 bta_av_sbc_ups_cb.cur_pos = dst_sps;
195 bta_av_sbc_ups_cb.cur_pos -= src_sps;
197 } while (bta_av_sbc_ups_cb.cur_pos > 0 && dst_samples);
199 bta_av_sbc_ups_cb.cur_pos += dst_sps;
202 if (bta_av_sbc_ups_cb.cur_pos == (INT32)dst_sps)
203 bta_av_sbc_ups_cb.cur_pos = 0
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-private.hh 77 inline hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; } function in struct:hb_buffer_t
78 inline hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; } function in struct:hb_buffer_t
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 77 inline hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; } function in struct:hb_buffer_t
78 inline hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; } function in struct:hb_buffer_t
  /external/oprofile/libopagent/
opagent.c 283 long cur_pos, last_pos; local
315 if ((cur_pos = ftell(dumpfile)) == -1l)
334 rec.total_size = last_pos - cur_pos;
339 if (fseek(dumpfile, cur_pos, SEEK_SET) == -1l)
  /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;
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_sco.c 58 UINT32 cur_pos; /* current position */ member in struct:__anon2938
594 p_cb->cur_pos = src_sps / 2;
645 APPL_TRACE_DEBUG2("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/dropbear/
progressmeter.c 60 static off_t cur_pos; /* transfer position as of last refresh */ variable
122 transferred = *counter - cur_pos;
123 cur_pos = *counter;
125 bytes_left = end_pos - cur_pos;
165 percent = ((float)cur_pos / end_pos) * 100;
173 cur_pos);
244 cur_pos = 0;
267 if (cur_pos != end_pos)
  /external/openssh/
progressmeter.c 70 static off_t cur_pos; /* transfer position as of last refresh */ variable
132 transferred = *counter - cur_pos;
133 cur_pos = *counter;
135 bytes_left = end_pos - cur_pos;
175 percent = ((float)cur_pos / end_pos) * 100;
183 cur_pos);
255 cur_pos = 0;
278 if (cur_pos != end_pos)
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 64 static uint64_t cur_pos = 0; variable
97 size += cur_pos;
107 memcpy(&write_buffer[cur_pos], s, len);
108 cur_pos += len;
136 val = *(uint32_t*)&write_buffer[cur_pos];
137 cur_pos += 4;
147 val = *(uint64_t*)&write_buffer[cur_pos];
148 cur_pos += 8;
275 cur_pos = 0;
355 uint64_t save_cur_pos = cur_pos;
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 321 unsigned int cur_pos = 0; local
324 while ( (next_pos = src.find_first_of('\n', cur_pos)) != std::string::npos) {
325 ALOGE("%03d : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
326 cur_pos = next_pos + 1;
329 ALOGE("%03d : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
    [all...]
  /external/chromium_org/chrome_frame/
chrome_active_document.cc 384 ULARGE_INTEGER cur_pos = {0}; local
387 stream->Seek(offset, STREAM_SEEK_CUR, &cur_pos);
390 DWORD url_size = statstg.cbSize.LowPart - cur_pos.LowPart;
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.h 58 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/freetype/src/pshinter/
pshalgo.h 57 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/qemu/
savevm.c 1058 int64_t total_len, end_pos, cur_pos; local
1072 cur_pos = qemu_ftell(f);
1086 qemu_fseek(f, cur_pos + record_len, SEEK_SET);
    [all...]

Completed in 1381 milliseconds