Searched defs:start_pos (Results 26 - 50 of 59) sorted by relevance

123

/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_util.cc431 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/v8/src/
H A Dpreparser.cc54 void PreParserTraits::ReportMessageAt(int start_pos, argument
59 pre_parser_->log_->LogMessage(start_pos, end_pos, message, arg,
H A Dscanner.cc800 int start_pos = source_pos(); // For reporting octal positions. local
846 octal_pos_ = Location(start_pos, source_pos());
H A Dcode-stubs-hydrogen.cc1417 HValue* start_pos = AddUncasted<HSub>(array_length, local
1419 HValue* slot_iterator = loop_builder.BeginBody(start_pos,
H A Dparser.h45 int start_pos() { return backing_[kStartPositionIndex]; } function in class:v8::internal::BASE_EMBEDDED
H A Disolate.cc1090 thread_local_top()->pending_message_start_pos_ = location->start_pos();
1115 location->script()->GetLineNumber(location->start_pos()) + 1;
1218 int start_pos = thread_local_top_.pending_message_start_pos_; local
1220 MessageLocation location(script, start_pos, end_pos);
1241 int start_pos = thread_local_top_.pending_message_start_pos_; local
1243 return MessageLocation(script, start_pos, end_pos);
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc200 static void GetNextFrame(size_t* start_pos, size_t* end_pos) { argument
201 size_t current_pos = *start_pos;
208 *start_pos = current_pos;
221 static void GetNextFrame(size_t* start_pos, size_t* end_pos) { argument
222 assert(LookingAtNAL(kData, *start_pos));
223 *end_pos = *start_pos;
308 size_t start_pos = encoded_data_next_pos_to_decode_; local
310 GetNextFrame(&start_pos, &end_pos);
314 uint32_t size = static_cast<uint32_t>(end_pos - start_pos);
318 kData + start_pos,
[all...]
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc201 static void GetNextFrame(size_t* start_pos, size_t* end_pos) { argument
202 size_t current_pos = *start_pos;
209 *start_pos = current_pos;
222 static void GetNextFrame(size_t* start_pos, size_t* end_pos) { argument
223 assert(LookingAtNAL(kData, *start_pos));
224 *end_pos = *start_pos;
309 size_t start_pos = encoded_data_next_pos_to_decode_; local
311 GetNextFrame(&start_pos, &end_pos);
315 uint32_t size = static_cast<uint32_t>(end_pos - start_pos);
319 kData + start_pos,
[all...]
H A Dvideo_decode_dev.cc112 static void GetNextNALUBoundary(size_t start_pos, size_t* end_pos);
312 size_t start_pos, size_t* end_pos) {
313 assert(LookingAtNAL(kData, start_pos));
314 *end_pos = start_pos;
341 size_t start_pos = encoded_data_next_pos_to_decode_; local
343 GetNextNALUBoundary(start_pos, &end_pos);
344 pp::Buffer_Dev* buffer = new pp::Buffer_Dev(gles2_, end_pos - start_pos);
348 bitstream_buffer.size = end_pos - start_pos;
350 memcpy(buffer->data(), kData + start_pos, end_pos - start_pos);
311 GetNextNALUBoundary( size_t start_pos, size_t* end_pos) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser_unittest.cc1600 pair<int, int> start_pos = FindOrDie(markers_, start_marker); local
1604 expected_span.Add(start_pos.first);
1605 expected_span.Add(start_pos.second);
1606 if (end_pos.first != start_pos.first) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc112 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);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Ddefines.h166 int16_t start_pos; member in struct:iLBC_Enc_Inst_t_
/external/chromium_org/win8/metro_driver/ime/
H A Dtext_store.cc309 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_po
625 const LONG start_pos = selection_buffer[0].acpStart; local
796 LONG start_pos, length; local
[all...]
/external/libnfc-nxp/src/
H A DphLlcNfc_DataTypes.h460 uint8_t start_pos; member in struct:phLlcNfc_StoreIFrame
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_fax.cpp11 int _FindBit(const FX_BYTE* data_buf, int max_pos, int start_pos, int bit) argument
13 if (start_pos >= max_pos) {
17 if (start_pos % 8) {
18 FX_BYTE data = data_buf[start_pos / 8];
20 data &= 0xff >> (start_pos % 8);
22 data |= 0xff << (8 - start_pos % 8);
25 return start_pos / 8 * 8 + leading_pos[data];
27 start_pos += 7;
30 int byte_pos = start_pos / 8;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc112 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);
/external/aac/libSBRdec/src/
H A Denv_calc.cpp163 int start_pos, int next_pos,
172 int start_pos, int next_pos,
612 UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) for current envelope. */ local
649 start_pos, stop_pos,
658 start_pos, stop_pos,
841 noise_e = (start_pos < no_cols) ? adj_e : final_e;
907 sc_change = (start_pos<no_cols)? adj_e - input_e : final_e - input_e;
927 for (j = start_pos; j < stop_pos; j++)
936 if ( (j==no_cols) && (start_pos<no_cols) )
991 if (j-start_pos < smooth_lengt
1227 rescaleSubbandSamples(FIXP_DBL ** re, FIXP_DBL ** im, int lowSubband, int highSubband, int start_pos, int next_pos, int shift) argument
1262 maxSubbandSample( FIXP_DBL ** re, FIXP_DBL ** im, int lowSubband, int highSubband, int start_pos, int next_pos ) argument
1334 calcNrgPerSubband(FIXP_DBL **analysBufferReal, FIXP_DBL **analysBufferImag, int lowSubband, int highSubband, int start_pos, int next_pos, SCHAR frameExp, FIXP_DBL *nrgEst, SCHAR *nrgEst_e ) argument
1455 calcNrgPerSfb(FIXP_DBL **analysBufferReal, FIXP_DBL **analysBufferImag, int nSfb, UCHAR *freqBandTable, int start_pos, int next_pos, SCHAR input_e, FIXP_DBL *nrgEst, SCHAR *nrgEst_e ) argument
[all...]
/external/aac/libSBRenc/src/
H A Denv_est.cpp442 over slots (start_pos) to (stop_pos)
450 INT start_pos, /*! start slot */
476 for (l = start_pos; l < border_pos; l++) {
582 INT no_of_bands, start_pos, stop_pos, li, ui; local
627 start_pos = timeStep * frame_info->borders[i];
696 count[j] = stop_pos - start_pos;
703 start_pos,
725 start_pos,
741 count[j] = (stop_pos - start_pos) * (ui - li);
745 start_pos,
448 getEnvSfbEnergy(INT li, INT ui, INT start_pos, INT stop_pos, INT border_pos, FIXP_DBL **YBuffer, INT YBufferSzShift, INT scaleNrg0, INT scaleNrg1) argument
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp422 static int read_file_line(const char* map, int start_pos, int size, int* line_size) argument
425 //debug("in, start pos:%d, size:%d", start_pos, size);
427 for(i = start_pos; i < size; i++)
433 //debug("out, ret:%d, start pos:%d, size:%d, line_size:%d", i, start_pos, size, *line_size);
457 static int read_line_word(const char* line, int start_pos, int line_size, char* word, int *word_size, bool lower_case = false) argument
461 //debug("in, line start_pos:%d, line_size:%d", start_pos, line_size);
462 for(i = start_pos; i < line_size; i++)
483 //debug("out, ret:%d, word:%s, word_size:%d, line start_pos:%d, line_size:%d",
484 // i, word, *word_size, start_pos, line_siz
[all...]
/external/chromium_org/content/common/gpu/media/
H A Dvideo_decode_accelerator_unittest.cc270 // to the decoder, starting at |start_pos| and returning one fragment. Skips
272 std::string GetBytesForFirstFragment(size_t start_pos, size_t* end_pos);
274 // (based on |start_pos|).
275 std::string GetBytesForNextFragment(size_t start_pos, size_t* end_pos);
277 void GetBytesForNextNALU(size_t start_pos, size_t* end_pos); // For h.264.
279 size_t start_pos, size_t* end_pos); // For VP8.
656 size_t start_pos, size_t* end_pos) {
658 *end_pos = start_pos;
665 *end_pos = start_pos;
669 return GetBytesForNextFragment(start_pos, end_po
655 GetBytesForFirstFragment( size_t start_pos, size_t* end_pos) argument
672 GetBytesForNextFragment( size_t start_pos, size_t* end_pos) argument
686 GetBytesForNextNALU( size_t start_pos, size_t* end_pos) argument
701 GetBytesForNextFrame( size_t start_pos, size_t* end_pos) argument
[all...]
/external/chromium_org/ui/aura/
H A Dwindow_unittest.cc3149 std::string::size_type start_pos,
3152 std::string::size_type end_pos = description.find(' ', start_pos);
3154 const std::string::size_type part_length = end_pos - start_pos;
3156 description.substr(start_pos, part_length);
3158 start_pos = AddWindowsFromString(parent->children().back(),
3162 end_pos = description.find(' ', start_pos);
3163 if (end_pos == std::string::npos && start_pos != end_pos)
3172 start_pos = ++end_pos;
3173 end_pos = description.find(' ', start_pos);
3147 AddWindowsFromString(aura::Window* parent, const std::string& description, std::string::size_type start_pos, WindowDelegate* delegate) argument
/external/chromium_org/ui/gfx/
H A Drender_text_win.cc882 const SkPoint& start_pos = local
888 renderer.DrawPosText(&start_pos, &run->glyphs[colored_glyphs.start()],
890 renderer.DrawDecorations(start_pos.x(), text_offset.y(),
891 SkScalarCeilToInt(end_pos.x() - start_pos.x()),
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c1335 FIRSTPASS_STATS *start_pos; local
1375 start_pos = cpi->twopass.stats_in; /* Note starting "file" position */
1387 reset_fpf_position(cpi, start_pos);
1394 start_pos = cpi->twopass.stats_in; /* Note starting "file" position */
1405 reset_fpf_position(cpi, start_pos); /* Reset file position */
1741 FIRSTPASS_STATS *start_pos; local
1775 start_pos = cpi->twopass.stats_in;
2144 reset_fpf_position(cpi, start_pos);
2332 reset_fpf_position(cpi, start_pos);
2352 reset_fpf_position(cpi, start_pos);
2647 FIRSTPASS_STATS *start_pos; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1557 const FIRSTPASS_STATS *const start_pos = twopass->stats_in; local
1739 reset_fpf_position(twopass, start_pos);
1779 reset_fpf_position(twopass, start_pos);
1784 calculate_section_intra_ratio(start_pos, twopass->stats_in_end,
1813 const FIRSTPASS_STATS *start_pos = twopass->stats_in; local
1860 reset_fpf_position(twopass, start_pos);
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c1335 FIRSTPASS_STATS *start_pos; local
1375 start_pos = cpi->twopass.stats_in; /* Note starting "file" position */
1387 reset_fpf_position(cpi, start_pos);
1394 start_pos = cpi->twopass.stats_in; /* Note starting "file" position */
1405 reset_fpf_position(cpi, start_pos); /* Reset file position */
1741 FIRSTPASS_STATS *start_pos; local
1775 start_pos = cpi->twopass.stats_in;
2144 reset_fpf_position(cpi, start_pos);
2332 reset_fpf_position(cpi, start_pos);
2352 reset_fpf_position(cpi, start_pos);
2647 FIRSTPASS_STATS *start_pos; local
[all...]

Completed in 3424 milliseconds

123