Home
last modified time | relevance | path

Searched refs:current_position (Results 1 – 16 of 16) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc92 int current_position = total_bytes_read_ - in PushLimit() local
100 byte_limit <= INT_MAX - current_position) { in PushLimit()
101 current_limit_ = current_position + byte_limit; in PushLimit()
129 int current_position = total_bytes_read_ - in BytesUntilLimit() local
132 return current_limit_ - current_position; in BytesUntilLimit()
139 int current_position = total_bytes_read_ - in SetTotalBytesLimit() local
141 total_bytes_limit_ = max(current_position, total_bytes_limit); in SetTotalBytesLimit()
348 int current_position = total_bytes_read_ - buffer_size_after_limit_; in ReadTagSlow() local
349 if (current_position >= total_bytes_limit_) { in ReadTagSlow()
465 int current_position = total_bytes_read_ - buffer_size_after_limit_; in Refresh() local
[all …]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
Dcoded_stream.cc114 int current_position = CurrentPosition(); in PushLimit() local
121 byte_limit <= INT_MAX - current_position) { in PushLimit()
122 current_limit_ = current_position + byte_limit; in PushLimit()
150 int current_position = CurrentPosition(); in BytesUntilLimit() local
152 return current_limit_ - current_position; in BytesUntilLimit()
159 int current_position = CurrentPosition(); in SetTotalBytesLimit() local
160 total_bytes_limit_ = max(current_position, total_bytes_limit); in SetTotalBytesLimit()
372 int current_position = total_bytes_read_ - buffer_size_after_limit_; in ReadTagSlow() local
373 if (current_position >= total_bytes_limit_) { in ReadTagSlow()
492 int current_position = total_bytes_read_ - buffer_size_after_limit_; in Refresh() local
[all …]
/external/srec/srec/clib/
Dswicms.c323 int current_position; in swicms_set_cmn() local
336 current_position = 0; in swicms_set_cmn()
338 parsed_strings [dim_count] = copy_of_params + current_position; in swicms_set_cmn()
342 switch ( *( copy_of_params + current_position ) ) in swicms_set_cmn()
368 *( copy_of_params + current_position) = '\0'; in swicms_set_cmn()
369 current_position++; in swicms_set_cmn()
371 if ( current_position == length_of_params ) in swicms_set_cmn()
376 parsed_strings [dim_count] = copy_of_params + current_position; in swicms_set_cmn()
403 current_position++; in swicms_set_cmn()
405 if ( current_position == length_of_params ) in swicms_set_cmn()
/external/chromium_org/webkit/child/
Dfling_animator_impl_android.cc105 gfx::Point current_position = GetCurrentPosition(); in apply() local
106 gfx::Vector2d diff(current_position - last_position_); in apply()
107 last_position_ = current_position; in apply()
/external/qemu/distrib/sdl-1.2.15/src/cdrom/qnx/
DSDL_syscdrom.c400 switch (info.current_position.header.audio_status) in SDL_SYS_CDStatus()
418 if (info.current_position.data_format == CDROM_LEADOUT) in SDL_SYS_CDStatus()
437 *position = MSF_TO_FRAMES(info.current_position.addr.msf.minute, in SDL_SYS_CDStatus()
438 info.current_position.addr.msf.second, in SDL_SYS_CDStatus()
439 info.current_position.addr.msf.frame); in SDL_SYS_CDStatus()
/external/v8/src/
Dassembler.h730 PositionState() : current_position(RelocInfo::kNoPosition), in PositionState()
735 int current_position; member
779 int current_position() const { return state_.current_position; } in current_position() function
Dassembler.cc1259 state_.current_position = pos; in RecordPosition()
1295 if (state_.current_position != state_.written_position && in WriteRecordedPositions()
1296 state_.current_position != state_.written_statement_position) { in WriteRecordedPositions()
1298 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); in WriteRecordedPositions()
1299 state_.written_position = state_.current_position; in WriteRecordedPositions()
Dinterpreter-irregexp.cc87 int current_position, in TraceInterpreter() argument
100 current_position, in TraceInterpreter()
/external/chromium_org/chrome/browser/history/android/
Dsqlite_cursor.cc68 int current_position = position_; in GetCount() local
71 MoveTo(env, obj, current_position); in GetCount()
/external/chromium_org/v8/src/
Dassembler.h911 PositionState() : current_position(RelocInfo::kNoPosition), in PositionState()
916 int current_position; member
969 int current_position() const { return state_.current_position; } in current_position() function
Dassembler.cc1648 state_.current_position = pos; in RecordPosition()
1693 if (state_.current_position != state_.written_position && in WriteRecordedPositions()
1694 state_.current_position != state_.written_statement_position) { in WriteRecordedPositions()
1696 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); in WriteRecordedPositions()
1697 state_.written_position = state_.current_position; in WriteRecordedPositions()
Dinterpreter-irregexp.cc94 int current_position, in TraceInterpreter() argument
107 current_position, in TraceInterpreter()
/external/chromium_org/media/filters/
Dsource_buffer_stream_unittest.cc189 int current_position = starting_position; in CheckExpectedBuffers() local
190 for (; current_position <= ending_position; current_position++) { in CheckExpectedBuffers()
198 if (expect_keyframe && current_position == starting_position) in CheckExpectedBuffers()
211 current_position); in CheckExpectedBuffers()
214 EXPECT_EQ(ending_position + 1, current_position); in CheckExpectedBuffers()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsdp.cc1033 size_t current_position = expected_min_fields; in ParseCandidate() local
1037 if (fields.size() >= (current_position + 2) && in ParseCandidate()
1038 fields[current_position] == kAttributeCandidateRaddr) { in ParseCandidate()
1039 related_address.SetIP(fields[++current_position]); in ParseCandidate()
1040 ++current_position; in ParseCandidate()
1042 if (fields.size() >= (current_position + 2) && in ParseCandidate()
1043 fields[current_position] == kAttributeCandidateRport) { in ParseCandidate()
1045 talk_base::FromString<int>(fields[++current_position])); in ParseCandidate()
1046 ++current_position; in ParseCandidate()
1057 for (size_t i = current_position; i + 1 < fields.size(); ++i) { in ParseCandidate()
/external/chromium_org/ui/views/controls/
Dscroll_view.cc67 int AdjustPosition(int current_position, in AdjustPosition() argument
71 if (-current_position == new_position) in AdjustPosition()
/external/chromium_org/content/browser/renderer_host/
Drender_widget_host_view_win.cc3046 CPoint current_position(LOWORD(lparam), HIWORD(lparam)); in HandleLockedMouseEvent() local
3047 ClientToScreen(&current_position); in HandleLockedMouseEvent()
3048 if (move_to_center_request_.target.x() == current_position.x && in HandleLockedMouseEvent()
3049 move_to_center_request_.target.y() == current_position.y) { in HandleLockedMouseEvent()