Searched defs:cur_pos (Results 1 - 13 of 13) sorted by relevance

/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_sbc.c36 INT32 cur_pos; /* current position */ member in struct:__anon461
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
[all...]
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_sco.c58 UINT32 cur_pos; /* current position */ member in struct:__anon532
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/chromium_org/cc/trees/
H A Ddamage_tracker.cc229 SortedRectMap::iterator cur_pos = rect_history_.begin(); local
230 SortedRectMap::iterator copy_pos = cur_pos;
234 // cur_pos iterator runs through all elements of the vector, but copy_pos
239 // cur_pos and no copy happens.
240 while (cur_pos < rect_history_.end()) {
241 if (cur_pos->mailboxId_ == mailboxId_) {
242 if (cur_pos != copy_pos)
243 *copy_pos = *cur_pos;
247 damage_rect.Union(cur_pos->rect_);
250 ++cur_pos;
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer-private.hh77 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/dropbear/
H A Dprogressmeter.c60 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/harfbuzz_ng/src/
H A Dhb-buffer-private.hh77 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/openssh/
H A Dprogressmeter.c70 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/oprofile/libopagent/
H A Dopagent.c283 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)
/external/compiler-rt/lib/profile/
H A DGCDAProfiling.c64 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...]
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshalgo.h57 FT_Pos cur_pos; member in struct:PSH_HintRec_
/external/freetype/src/pshinter/
H A Dpshalgo.h57 FT_Pos cur_pos; member in struct:PSH_HintRec_
/external/chromium_org/chrome_frame/
H A Dchrome_active_document.cc384 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;
/external/qemu/
H A Dsavevm.c1058 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);

Completed in 413 milliseconds