HomeSort by relevance Sort by last modified time
    Searched refs:new_pos (Results 1 - 25 of 29) sorted by null

1 2

  /external/nanopb-c/generator/google/protobuf/internal/
decoder.py 108 decoder returns a (value, new_pos) pair.
161 """Read a tag from the buffer, and return a (tag_bytes, new_pos) tuple.
217 (element, new_pos) = decode_value(buffer, pos)
221 pos = new_pos + tag_len
222 if buffer[new_pos:pos] != tag_bytes or new_pos >= end:
224 if new_pos > end:
226 return new_pos
249 (result, new_pos) = decode_value(buffer, pos)
250 return (modify_value(result), new_pos)
    [all...]
python_message.py 815 (tag_bytes, new_pos) = local_ReadTag(buffer, pos)
818 value_start_pos = new_pos
819 new_pos = local_SkipField(buffer, new_pos, end, tag_bytes)
820 if new_pos == -1:
824 unknown_field_list.append((tag_bytes, buffer[value_start_pos:new_pos]))
825 pos = new_pos
827 pos = field_decoder(buffer, new_pos, end, self, field_dict)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.cc 54 long new_pos = current_pos + sizeof(int16_t) * samples; // Samples to bytes. local
55 RTC_CHECK_GE(new_pos, 0)
57 new_pos = new_pos % file_size; // Wrap around the end of the file.
59 RTC_CHECK_EQ(0, fseek(fp_, new_pos, SEEK_SET));
  /external/protobuf/python/google/protobuf/internal/
decoder.py 114 decoder returns a (value, new_pos) pair.
176 """Read a tag from the buffer, and return a (tag_bytes, new_pos) tuple.
234 (element, new_pos) = decode_value(buffer, pos)
238 pos = new_pos + tag_len
239 if buffer[new_pos:pos] != tag_bytes or new_pos >= end:
241 if new_pos > end:
243 return new_pos
266 (result, new_pos) = decode_value(buffer, pos)
267 return (modify_value(result), new_pos)
    [all...]
python_message.py 862 (tag_bytes, new_pos) = local_ReadTag(buffer, pos)
865 value_start_pos = new_pos
866 new_pos = local_SkipField(buffer, new_pos, end, tag_bytes)
867 if new_pos == -1:
871 unknown_field_list.append((tag_bytes, buffer[value_start_pos:new_pos]))
872 pos = new_pos
874 pos = field_decoder(buffer, new_pos, end, self, field_dict)
    [all...]
  /device/google/contexthub/util/common/
file.cpp 89 off64_t new_pos = lseek64(mFd, pos, whence); local
90 return new_pos < 0 ? -errno : new_pos;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRStringStream.js 116 var new_pos = this.p+i-1;
117 if (new_pos>=this.n || new_pos<0) {
120 return this.data.charAt(new_pos);
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-indic.cc 1381 unsigned int new_pos = base == end ? base - 2 : base - 1; local
1621 unsigned int new_pos = base; local
    [all...]
hb-buffer.cc 127 hb_glyph_position_t *new_pos = NULL; local
141 new_pos = (hb_glyph_position_t *) realloc (pos, new_allocated * sizeof (pos[0]));
145 if (unlikely (!new_pos || !new_info))
148 if (likely (new_pos))
149 pos = new_pos;
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.h 199 int *new_pos);
206 int *new_pos);
222 int *new_pos);
dbus-marshal-basic.c 506 * @param new_pos the new position of the string
513 int *new_pos)
517 if (new_pos)
518 *new_pos = pos + 4;
545 * @param new_pos pointer to update with new position, or #NULL
553 int *new_pos)
649 if (new_pos)
650 *new_pos = pos;
    [all...]
  /external/libbrillo/brillo/streams/
memory_stream_unittest.cc 125 uint64_t new_pos = 0; local
126 EXPECT_TRUE(stream_->Seek(2, Stream::Whence::FROM_BEGIN, &new_pos, &error));
128 EXPECT_EQ(2, new_pos);
130 EXPECT_TRUE(stream_->Seek(2, Stream::Whence::FROM_CURRENT, &new_pos, &error));
132 EXPECT_EQ(4, new_pos);
  /art/runtime/quick/
inline_method_analyser.cc 239 size_t new_pos = 0; local
240 while (new_pos != arraysize(iputs) && iputs[new_pos].field_index != DexFile::kDexNoIndex16) {
241 ++new_pos;
243 if (new_pos == arraysize(iputs)) {
246 iputs[new_pos].field_index = field_index;
247 iputs[new_pos].arg = new_iput->VRegA_22c() - this_vreg;
  /toolchain/binutils/binutils-2.25/gas/config/
tc-dlx.c 602 char *new_pos; local
649 new_pos = input_line_pointer;
651 return new_pos;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 829 long ParseCluster(long long& cluster_pos, long long& new_pos) const;
830 bool AddCluster(long long cluster_pos, long long new_pos);
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 63 int new_pos = FXSYS_round(pos); local
65 return new_pos;
67 blues[count++] = new_pos;
68 return new_pos;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.hpp 1010 long ParseCluster(long long& cluster_pos, long long& new_pos) const;
1011 bool AddCluster(long long cluster_pos, long long new_pos);
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 359 new_pos = Cursor(pos.line + 1, 0)
360 yield MakeToken(lines, pos, new_pos, 'exp')
361 pos = new_pos
  /external/protobuf/gtest/scripts/
pump.py 353 new_pos = Cursor(pos.line + 1, 0)
354 yield MakeToken(lines, pos, new_pos, 'exp')
355 pos = new_pos
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 359 new_pos = Cursor(pos.line + 1, 0)
360 yield MakeToken(lines, pos, new_pos, 'exp')
361 pos = new_pos
  /external/opencv3/modules/core/test/
test_ds.cpp 676 int new_pos, new_pos0; local
680 new_pos = cvtest::randInt(rng) % (total*2) - total;
681 new_pos0 = new_pos + (is_relative ? pos : 0 );
687 cvSetSeqReaderPos( &reader, new_pos, is_relative );
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
input_readers.py     [all...]
  /external/v8/src/parsing/
parser-base.h 2925 int new_pos = position(); local
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.cpp 5773 long long new_pos = -1; local
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.cc 5993 long long new_pos = -1; local
    [all...]

Completed in 1207 milliseconds

1 2