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

1 2

  /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...]
defines.h 166 int16_t start_pos; member in struct:IlbcEncoder_
  /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/pdfium/third_party/freetype/src/type1/
t1parse.c 276 FT_ULong start_pos = FT_STREAM_POS(); local
306 if ( FT_STREAM_SEEK( start_pos ) ||
  /external/dbus/dbus/
dbus-marshal-recursive.h 46 dbus_uint32_t array_len_offset : 3; /**< bytes back from start_pos that len ends */
56 int start_pos; /**< for array readers, the start of the array values */ member in struct:DBusTypeReader::__anon9603::__anon9604
82 int start_pos; /**< position of first element in the array */ member in struct:DBusTypeWriter::__anon9605::__anon9606
  /external/v8/src/
messages.h 27 MessageLocation(Handle<Script> script, int start_pos, int end_pos,
30 start_pos_(start_pos),
36 int start_pos() const { return start_pos_; } function in class:v8::internal::MessageLocation
    [all...]
flags.cc 409 int start_pos = (value == NULL) ? i : i - 1; local
410 int js_argc = *argc - start_pos;
416 js_argv[k - start_pos] = StrDup(argv[k]);
code-stubs-hydrogen.cc 1993 HValue* start_pos = local
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_stream.cxx 101 ios::pos_type start_pos; member in struct:tiffis_data
107 ios::pos_type start_pos; member in struct:tiffos_data
168 uint64 new_offset = static_cast<uint64>(data->start_pos) + off;
218 origin = data->start_pos;
232 if( (static_cast<uint64>(origin) + off) > static_cast<uint64>(data->start_pos) ) {
261 uint64 new_offset = static_cast<uint64>(data->start_pos) + off;
293 return (uint64) (data->stream->tellg() - data->start_pos);
363 data->start_pos = data->stream->tellp();
378 data->start_pos = data->stream->tellg();
  /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/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_utility.cpp 102 FX_DWORD start_pos = m_dwCurPos - 1; local
103 pStart = m_pData + start_pos;
112 dwSize = m_dwCurPos - start_pos;
230 FX_DWORD& start_pos,
236 start_pos = m_dwCurPos;
  /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));
  /frameworks/native/libs/binder/
PersistableBundle.cpp 104 size_t start_pos = parcel->dataPosition(); local
110 size_t length = end_pos - start_pos;
366 size_t start_pos = parcel->dataPosition(); local
  /system/connectivity/shill/vpn/
openvpn_management_server.cc 263 size_t start_pos = message.find(start); local
264 if (start_pos == string::npos) {
267 size_t end_pos = message.find(end, start_pos + start.size());
271 return message.substr(start_pos + start.size(),
272 end_pos - start_pos - start.size());
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 1767 pair<int, int> start_pos = FindOrDie(markers_, start_marker); local
    [all...]
  /external/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/v8/src/parsing/
scanner.cc 970 int start_pos = source_pos(); // For reporting octal positions. local
1017 octal_pos_ = Location(start_pos, source_pos());
    [all...]
parser.h 230 int start_pos() { return backing_[kStartPositionIndex]; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/aac/libSBRenc/src/
env_est.cpp 550 over slots (start_pos) to (stop_pos)
558 INT start_pos, /*! start slot */
584 for (l = start_pos; l < border_pos; l++) {
690 INT no_of_bands, start_pos, stop_pos, li, ui; local
735 start_pos = timeStep * frame_info->borders[i];
804 count[j] = stop_pos - start_pos;
811 start_pos,
833 start_pos,
849 count[j] = (stop_pos - start_pos) * (ui - li);
853 start_pos,
    [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...]
  /external/libnfc-nxp/src/
phLlcNfc_DataTypes.h 460 uint8_t start_pos; member in struct:phLlcNfc_StoreIFrame
  /external/aac/libSBRdec/src/
env_calc.cpp 163 int start_pos, int next_pos,
172 int start_pos, int next_pos,
621 UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) for current envelope. */ local
658 start_pos, stop_pos,
667 start_pos, stop_pos,
    [all...]
  /external/crcalc/src/com/hp/creals/
CR.java 546 int start_pos = 0, point_pos; local
548 while (s.charAt(start_pos) == ' ') ++start_pos;
550 point_pos = s.indexOf('.', start_pos);
557 String whole = s.substring(start_pos, point_pos);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_firstpass.c 943 const FIRSTPASS_STATS *start_pos; local
1407 const FIRSTPASS_STATS *start_pos; local
1842 const FIRSTPASS_STATS *start_pos = cpi->twopass.stats_in; local
    [all...]

Completed in 1356 milliseconds

1 2