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

1 2 3

  /external/grpc-grpc/src/compiler/
ruby_generator_string-inl.h 54 size_t start_pos = s.find(from); local
55 if (start_pos == grpc::string::npos) {
58 s.replace(start_pos, from.length(), to);
76 size_t start_pos = s->find(from); local
77 if (start_pos == grpc::string::npos || start_pos != 0) {
80 s->replace(start_pos, from.length(), to);
objective_c_generator.cc 67 size_t start_pos = it->find_first_not_of(' '); local
68 if (start_pos != grpc::string::npos) {
69 printer->PrintRaw(it->c_str() + start_pos);
python_generator.cc 102 size_t start_pos = it->find_first_not_of(' '); local
103 if (start_pos != grpc::string::npos) {
104 out->PrintRaw(it->c_str() + start_pos);
  /external/pdfium/core/fpdfapi/parser/
cpdf_simple_parser.cpp 43 uint32_t start_pos = m_dwCurPos - 1; local
44 pStart = m_pData + start_pos;
53 dwSize = m_dwCurPos - start_pos;
cpdf_data_avail.cpp 433 const FX_FILESIZE start_pos = m_dwFileLen > 1024 ? 1024 : m_dwFileLen; local
435 if (!GetValidator()->CheckDataRangeAndRequestIfUnavailable(start_pos,
cpdf_parser.cpp 691 FX_FILESIZE start_pos = 0; local
733 start_pos = pos + i;
794 start_pos = start_pos1;
826 FX_FILESIZE obj_pos = start_pos - m_pSyntax->m_HeaderOffset;
827 last_obj = start_pos;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
decode_residual.c 44 size_t meml_gotten, diff, start_pos; local
53 start_pos = (iLBC_encbits->startIdx-1)*SUBL;
55 start_pos = (iLBC_encbits->startIdx-1)*SUBL + diff;
62 &decresidual[start_pos], iLBCdec_inst->state_short_len
70 WEBRTC_SPL_MEMCPY_W16(mem+CB_MEML-iLBCdec_inst->state_short_len, decresidual+start_pos,
76 &decresidual[start_pos+iLBCdec_inst->state_short_len],
88 decresidual+start_pos, meml_gotten);
102 WebRtcSpl_MemCpyReversedOrder(&decresidual[start_pos-1],
encode.c 52 size_t diff, start_pos; local
91 start_pos = iLBCenc_inst->start_pos;
173 start_pos = (iLBCbits_inst->startIdx-1)*SUBL;
176 start_pos = (iLBCbits_inst->startIdx-1)*SUBL + diff;
181 WebRtcIlbcfix_StateSearch(iLBCenc_inst, iLBCbits_inst, &residual[start_pos],
187 &decresidual[start_pos], iLBCenc_inst->state_short_len
198 decresidual+start_pos, iLBCenc_inst->state_short_len);
203 &residual[start_pos+iLBCenc_inst->state_short_len],
209 WebRtcIlbcfix_CbConstruct(&decresidual[start_pos+iLBCenc_inst->state_short_len]
    [all...]
  /external/webrtc/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/freetype/src/type1/
t1parse.c 276 FT_ULong start_pos = FT_STREAM_POS(); local
306 if ( FT_STREAM_SEEK( start_pos ) ||
  /external/libxaac/decoder/
ixheaacd_common_lpfuncs.c 172 WORD32 start_pos = 0; local
184 start_pos = temp_bs.cnt_bits;
208 drc_handle->dvb_anc_data_pos = start_pos;
ixheaacd_drc_freq_dec.c 878 WORD32 drc_band, spec_pos, start_pos, end_pos; local
    [all...]
ixheaacd_esbr_envcal.c 94 WORD32 start_pos = 0; local
213 start_pos = p_frame_info->border_vec[i];
216 for (t = start_pos; t < end_pos; t++) {
244 start_pos = pvc_frame_info->border_vec[i];
247 for (t = start_pos; t < end_pos; t++) {
261 for (t = start_pos; t < frame_data->sin_len_for_cur_top; t++) {
500 (*e_gain)[n][c] = nrg_gain_pvc[c][start_pos];
501 (*noise_buf)[n][c] = noise_level_pvc[c][start_pos];
    [all...]
ixheaacd_env_extr.c 515 WORD32 start_pos, end_pos, transient_env, start_pos_noise, end_pos_noise, local
525 start_pos = pstr_frame_info->border_vec[0];
534 if ((start_pos < 0) || (start_pos >= end_pos)) return 0;
536 if (start_pos > SBR_OV_SLOTS) return 0;
553 if ((start_pos != start_pos_noise) || (end_pos != end_pos_noise)) return 0;
    [all...]
  /external/tensorflow/tensorflow/java/src/gen/cc/
source_writer.cc 54 size_t start_pos = line_pos; local
55 line_pos = str.find('\n', start_pos);
58 Append(str.substr(start_pos, line_pos - start_pos));
61 Append(str.substr(start_pos, str.size() - start_pos));
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.cc 106 size_t start_pos = label.find(receiver); local
107 if (start_pos != std::string::npos) {
108 label.replace(start_pos, receiver.length(), "Sender");
  /external/openssh/
progressmeter.c 69 static off_t start_pos; /* initial position of transfer */ variable
132 transferred = *counter - (cur_pos ? cur_pos : start_pos);
142 transferred = end_pos - start_pos;
254 start_pos = *ctr;
  /external/v8/src/
messages.h 34 MessageLocation(Handle<Script> script, int start_pos, int end_pos);
35 MessageLocation(Handle<Script> script, int start_pos, int end_pos,
40 int start_pos() const { return start_pos_; } function in class:v8::internal::MessageLocation
    [all...]
flags.cc 507 int start_pos = (value == nullptr) ? i : i - 1; local
508 int js_argc = *argc - start_pos;
514 js_argv[k - start_pos] = StrDup(argv[k]);
  /external/webrtc/webrtc/base/
stringencode.cc 607 size_t start_pos = remain_source.find(start_mark); local
608 if (std::string::npos == start_pos) break;
610 if (start_pos > 0) {
611 pre_mark = remain_source.substr(0, start_pos - 1);
614 ++start_pos;
615 size_t end_pos = remain_source.find(end_mark, start_pos);
621 fields->push_back(remain_source.substr(start_pos, end_pos - start_pos));
  /external/protobuf/src/google/protobuf/util/internal/
proto_writer.cc 325 int start_pos = ow_->stream_->ByteCount(); local
328 // of any nested messages. We start with -start_pos here, so we only
330 SizeInfo info = {start_pos, -start_pos};
  /external/v8/src/debug/
debug-coverage.cc 85 const int start_pos = coverage_info->StartSourcePosition(i); local
89 DCHECK_NE(kNoSourcePosition, start_pos);
90 result.emplace_back(start_pos, until_pos, count);
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 2232 pair<int, int> start_pos = FindOrDie(markers_, start_marker); local
    [all...]
  /external/aac/libSBRenc/src/
env_est.cpp 597 (ui) over slots (start_pos) to (stop_pos)
606 INT start_pos, /*! start slot */
634 for (l = start_pos; l < border_pos; l++) {
739 INT no_of_bands, start_pos, stop_pos, li, ui; local
784 start_pos = timeStep * frame_info->borders[env];
792 if ((stop_pos - start_pos - j) > 0) {
856 count[j] = stop_pos - start_pos;
861 tmpNrg = getEnvSfbEnergy(k, k + 1, start_pos, stop_pos, border_pos,
876 tmpNrg = getEnvSfbEnergy(k, k + 1, start_pos, stop_pos, border_pos,
888 count[j] = (stop_pos - start_pos) * (ui - li)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 60 int start_pos = this.pos; local
163 start_pos + 1);
178 start_pos + 1);
192 start_pos + 1);
206 start_pos + 1);
220 start_pos + 1);
234 start_pos + 1);
248 start_pos + 1);
262 start_pos + 1);
277 start_pos + 1)
    [all...]

Completed in 876 milliseconds

1 2 3