HomeSort by relevance Sort by last modified time
    Searched defs:start_pos (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
decode_residual.c 42 int16_t meml_gotten, Nfor, Nback, diff, start_pos; local
51 start_pos = (iLBC_encbits->startIdx-1)*SUBL;
53 start_pos = (iLBC_encbits->startIdx-1)*SUBL + diff;
60 &decresidual[start_pos], iLBCdec_inst->state_short_len
68 WEBRTC_SPL_MEMCPY_W16(mem+CB_MEML-iLBCdec_inst->state_short_len, decresidual+start_pos,
74 &decresidual[start_pos+iLBCdec_inst->state_short_len],
87 decresidual+start_pos, meml_gotten);
101 WebRtcSpl_MemCpyReversedOrder(&decresidual[start_pos-1],
encode.c 50 int16_t diff, start_pos; local
89 start_pos = iLBCenc_inst->start_pos;
171 start_pos = (iLBCbits_inst->startIdx-1)*SUBL;
174 start_pos = (iLBCbits_inst->startIdx-1)*SUBL + diff;
179 WebRtcIlbcfix_StateSearch(iLBCenc_inst, iLBCbits_inst, &residual[start_pos],
185 &decresidual[start_pos], iLBCenc_inst->state_short_len
196 decresidual+start_pos, iLBCenc_inst->state_short_len);
201 &residual[start_pos+iLBCenc_inst->state_short_len],
207 WebRtcIlbcfix_CbConstruct(&decresidual[start_pos+iLBCenc_inst->state_short_len]
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
aligned_malloc.cc 28 uintptr_t GetRightAlign(uintptr_t start_pos, size_t alignment) {
31 return (start_pos + alignment - 1) & ~(alignment - 1);
49 uintptr_t start_pos = reinterpret_cast<uintptr_t>(pointer); local
50 return reinterpret_cast<void*>(GetRightAlign(start_pos, alignment));
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1parse.c 276 FT_Long start_pos = FT_STREAM_POS(); local
306 if ( FT_STREAM_SEEK( start_pos ) ||
  /external/chromium_org/v8/src/
messages.h 47 int start_pos,
50 start_pos_(start_pos),
55 int start_pos() const { return start_pos_; } function in class:v8::internal::MessageLocation
flags.cc 407 int start_pos = (value == NULL) ? i : i - 1; local
408 int js_argc = *argc - start_pos;
414 js_argv[k - start_pos] = StrDup(argv[k]);
scanner.cc 718 int start_pos = source_pos(); // For reporting octal positions. local
764 octal_pos_ = Location(start_pos, source_pos());
    [all...]
  /external/chromium_org/components/bookmarks/test/
bookmark_test_helpers.cc 55 std::string::size_type start_pos) {
59 std::string::size_type end_pos = model_string.find(' ', start_pos);
61 std::string::size_type part_length = end_pos - start_pos;
62 std::string node_name = model_string.substr(start_pos, part_length);
84 start_pos = end_pos;
85 end_pos = model_string.find(' ', start_pos);
133 std::string::size_type start_pos = 0; local
135 AddNodesFromString(model, node, model_string, start_pos);
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_unittest.cc 155 int start_pos = INT_MAX, rtp_length = INT_MAX; local
159 &start_pos, &rtp_length)); local
160 EXPECT_EQ(INT_MAX, start_pos);
166 &start_pos, &rtp_length)); local
167 EXPECT_EQ(INT_MAX, start_pos);
175 int start_pos = INT_MAX, rtp_length = INT_MAX; local
179 &start_pos, &rtp_length)); local
180 EXPECT_EQ(INT_MAX, start_pos);
186 &start_pos, &rtp_length)); local
187 EXPECT_EQ(INT_MAX, start_pos);
193 &start_pos, &rtp_length)); local
200 int start_pos = INT_MAX, rtp_length = INT_MAX; local
204 &start_pos, &rtp_length)); local
211 &start_pos, &rtp_length)); local
219 int start_pos = INT_MAX, rtp_length = INT_MAX; local
223 &start_pos, &rtp_length)); local
231 int start_pos = INT_MAX, rtp_length = INT_MAX; local
235 &start_pos, &rtp_length)); local
242 int start_pos = INT_MAX, rtp_length = INT_MAX; local
246 &start_pos, &rtp_length)); local
254 &start_pos, &rtp_length)); local
261 int start_pos = -1, rtp_length = -1; local
264 sizeof(kTurnChannelMsgWithRtpPacket), &start_pos, &rtp_length)); local
272 &start_pos, &rtp_length)); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringencode.cc 605 size_t start_pos = remain_source.find(start_mark); local
606 if (std::string::npos == start_pos) break;
608 if (start_pos > 0) {
609 pre_mark = remain_source.substr(0, start_pos - 1);
612 ++start_pos;
613 size_t end_pos = remain_source.find(end_mark, start_pos);
619 fields->push_back(remain_source.substr(start_pos, end_pos - start_pos));
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
stringutil.cc 83 size_t start_pos = 0; local
88 while ((find_pos = s.find(delimiter, start_pos)) != string::npos) {
89 const string substring = s.substr(start_pos, find_pos - start_pos);
93 start_pos = find_pos + delimiter.length();
95 if (start_pos != s.length()) {
96 result->push_back(s.substr(start_pos));
  /external/chromium_org/third_party/webrtc/base/
stringencode.cc 588 size_t start_pos = remain_source.find(start_mark); local
589 if (std::string::npos == start_pos) break;
591 if (start_pos > 0) {
592 pre_mark = remain_source.substr(0, start_pos - 1);
595 ++start_pos;
596 size_t end_pos = remain_source.find(end_mark, start_pos);
602 fields->push_back(remain_source.substr(start_pos, end_pos - start_pos));
  /external/chromium_org/chrome/browser/download/
download_shelf.cc 120 float start_pos = static_cast<float>(kStartAngleDegrees); local
123 start_pos = static_cast<float>(start_angle);
141 SkFloatToScalar(start_pos),
  /external/chromium_org/content/child/
multipart_response_delegate_unittest.cc 309 const int start_pos; // offset in data member in struct:content::__anon11789::TestChunk
337 ASSERT_TRUE(chunks[i].start_pos < chunks[i].end_pos);
338 string chunk = data.substr(chunks[i].start_pos,
339 chunks[i].end_pos - chunks[i].start_pos);
  /external/chromium_org/media/formats/webm/chromeos/
webm_encoder.cc 268 long int start_pos = ebml_sub_elements_.top(); local
271 uint64_t size = (end_pos - start_pos - 8) | 0x0100000000000000ULL;
273 if (fseek(output_, start_pos, SEEK_SET)) {
  /external/chromium_org/pdf/
document_loader.cc 322 uint32 start_pos, end_pos; local
323 if (GetByteRange(headers, &start_pos, &end_pos)) {
324 current_pos_ = start_pos;
325 if (end_pos && end_pos > start_pos)
326 current_chunk_size_ = end_pos - start_pos + 1;
393 uint32 start_pos, end_pos; local
394 if (GetByteRange(std::string(buffer_, i), &start_pos, &end_pos)) {
395 current_pos_ = start_pos;
398 if (end_pos && end_pos > start_pos)
399 current_chunk_size_ = end_pos - start_pos + 1
    [all...]
  /external/chromium_org/url/
gurl.cc 503 const char* start_pos = spec_.data() + parsed_.host.begin + local
506 if (!url::LowerCaseEqualsASCII(start_pos,
516 '.' != *(start_pos - 1))
  /external/lldb/source/Breakpoint/
BreakpointIDList.cpp 357 std::string::size_type start_pos = 0; local
373 *range_start_len = idx - start_pos;
374 std::string start_str = arg_str.substr (start_pos, *range_start_len);
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_utility.cpp 66 FX_DWORD start_pos = m_dwCurPos - 1; local
67 pStart = m_pData + start_pos;
78 dwSize = m_dwCurPos - start_pos;
200 FX_DWORD& start_pos, FX_DWORD& end_pos)
206 start_pos = m_dwCurPos;
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.cc 431 int start_pos = module_path->Length / sizeof(wchar_t) - 1; local
432 int ix = start_pos;
442 if ((ix == start_pos) && sep)
451 size_t size_bytes = (start_pos - ix + 1) * sizeof(wchar_t);
  /external/chromium_org/content/renderer/
dom_serializer_browsertest.cc 122 int start_pos = pos + 7; local
125 if (content[start_pos++] == L'=')
129 if (content[start_pos] > 0x0020)
131 ++start_pos;
136 int end_pos = start_pos;
144 charset_info = content.substr(start_pos, end_pos - start_pos);
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode_dev.cc 112 static void GetNextNALUBoundary(size_t start_pos, size_t* end_pos);
309 size_t start_pos, size_t* end_pos) {
310 assert(LookingAtNAL(kData, start_pos));
311 *end_pos = start_pos;
338 size_t start_pos = encoded_data_next_pos_to_decode_; local
340 GetNextNALUBoundary(start_pos, &end_pos);
341 pp::Buffer_Dev* buffer = new pp::Buffer_Dev(gles2_, end_pos - start_pos);
345 bitstream_buffer.size = end_pos - start_pos;
347 memcpy(buffer->data(), kData + start_pos, end_pos - start_pos);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 1600 pair<int, int> start_pos = FindOrDie(markers_, start_marker); local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
strutil.cc 112 string::size_type start_pos = 0; local
115 pos = s.find(oldsub, start_pos);
119 res->append(s, start_pos, pos - start_pos);
121 start_pos = pos + oldsub.size(); // start searching again after the "old"
123 res->append(s, start_pos, s.length() - start_pos);
    [all...]
  /external/chromium_org/win8/metro_driver/ime/
text_store.cc 309 const uint32 start_pos = acp_start - committed_size_; local
312 if (start_pos == end_pos) {
318 if (start_pos == 0) {
327 } else if (delegate_->GetCompositionCharacterBounds(start_pos - 1,
335 if (delegate_->GetCompositionCharacterBounds(start_pos, &tmp_rect)) {
348 if (start_pos == 0)
396 const LONG start_pos = selection_start_; local
398 const LONG new_end_pos = start_pos + text_buffer_size;
404 *acp_start = start_pos;
415 DCHECK_LE(start_pos, end_pos)
625 const LONG start_pos = selection_buffer[0].acpStart; local
796 LONG start_pos, length; local
    [all...]

Completed in 772 milliseconds

1 2 3