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

  /external/llvm/lib/Support/
raw_os_ostream.cpp 30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); } function in class:raw_os_ostream
raw_ostream.cpp 753 uint64_t raw_svector_ostream::current_pos() const { function in class:raw_svector_ostream
778 uint64_t raw_null_ostream::current_pos() const { function in class:raw_null_ostream
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 36 int32_t current_pos = ftell(file_); local
39 fseek(file_, current_pos, SEEK_SET);
40 return current_pos == end_pos;
  /external/chromium_org/cc/layers/
scrollbar_layer_impl_base.h 30 float current_pos() const { return current_pos_; } function in class:cc::ScrollbarLayerImplBase
31 void SetCurrentPos(float current_pos);
  /external/chromium_org/chrome/common/
content_settings_pattern_parser.cc 66 size_t current_pos = 0; local
72 current_pos = pattern_spec.find(
74 if (current_pos != std::string::npos) {
75 scheme_component = Component(start, current_pos);
76 start = current_pos + strlen(url::kStandardSchemeSeparator);
77 current_pos = start;
79 current_pos = start;
88 if (pattern_spec[current_pos] == '[')
89 current_pos = pattern_spec.find("]", start);
91 if (current_pos == std::string::npos
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
program_cache.cc 116 size_t current_pos = shader0_size + shader1_size; local
122 memcpy(&buffer.get()[current_pos], it->first.c_str(), name_size);
123 current_pos += name_size;
125 buffer[current_pos++] = value >> 24;
126 buffer[current_pos++] = value >> 16;
127 buffer[current_pos++] = value >> 8;
128 buffer[current_pos++] = value;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 93 uint64_t current_pos() const { return pos; } function in class:raw_debug_ostream
96 uint64_t current_pos() { return pos; } function in class:raw_debug_ostream
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
input_helpers.cc 156 size_t current_pos = 0; local
158 while ((next_delimiter = to_split.find(delimiter, current_pos)) !=
161 current_pos, next_delimiter - current_pos);
163 current_pos = next_delimiter + 1;
165 std::string last_part = to_split.substr(current_pos);
  /external/chromium_org/ui/base/test/
ui_controls_internal_win.cc 262 POINT current_pos; local
263 ::GetCursorPos(&current_pos);
264 if (screen_x == current_pos.x && screen_y == current_pos.y) {
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 93 uint64_t current_pos() const { return pos; } function in class:raw_debug_ostream
96 uint64_t current_pos() { return pos; } function in class:raw_debug_ostream
  /external/chromium_org/media/base/android/
media_codec_bridge.cc 513 const uint8* current_pos = extra_data; local
518 size_t size = *(++current_pos);
533 current_pos++;
536 base::android::ToJavaByteArray(env, current_pos, header_length[0]);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 160 size_t current_pos = kStunHeaderSize; local
162 while (current_pos < size) {
165 attr_type = talk_base::GetBE16(&data[current_pos]);
166 attr_length = talk_base::GetBE16(&data[current_pos + sizeof(attr_type)]);
171 current_pos + attr_length > size) {
179 current_pos += sizeof(attr_type) + sizeof(attr_length) + attr_length;
181 current_pos += (4 - (attr_length % 4));
190 size_t mi_pos = current_pos;
191 talk_base::scoped_ptr<char[]> temp_data(new char[current_pos]);
192 memcpy(temp_data.get(), data, current_pos);
    [all...]
  /external/chromium_org/v8/src/
scanner.cc 582 int current_pos = source_pos(); local
583 ASSERT_EQ(next_.location.end_pos, current_pos);
585 ASSERT(pos >= current_pos);
586 if (pos != current_pos) {
    [all...]
hydrogen.cc 12252 UsePosition* current_pos = range->first_pos(); local
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 199 size_t current_pos = *start_pos; local
200 if (current_pos == 0)
201 current_pos = 32; // Skip stream header.
202 uint32_t frame_size = kData[current_pos] + (kData[current_pos + 1] << 8) +
203 (kData[current_pos + 2] << 16) +
204 (kData[current_pos + 3] << 24);
205 current_pos += 12; // Skip frame header.
206 *start_pos = current_pos;
207 *end_pos = current_pos + frame_size
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
firstpass.c 2839 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 2839 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
firstpass.c 2842 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 929 size_t current_pos = 0; local
    [all...]

Completed in 2848 milliseconds