Searched refs:end (Results 1 - 25 of 493) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraParameters.cpp295 char *end; local
296 int w = (int)strtol(str, &end, 10);
298 if (*end != delim) {
304 int h = (int)strtol(end+1, &end, 10);
310 *endptr = end;
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp300 int64_t end = systemTime(); local
309 fprintf(stderr, "encoding %d frames in %lld us\n", nFrames, (end-start)/1000);
310 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
H A Dstagefright.cpp358 printf("seeking past the end now.");
717 char *end; local
718 long x = strtol(optarg, &end, 10);
720 if (*end != '\0' || end == optarg || x <= 0) {
905 it != list.end(); ++it) {
908 itRoles != (*it).mRoles.end() ; ++itRoles) {
987 char *end; local
988 long sampleRate = strtol(filename + 5, &end, 10);
990 if (end
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp266 uint8_t* end = (uint8_t*)mBuffer->data() + mBuffer->range_offset() local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorUtils.cpp400 it != ctx.mSeqParamSets.end(); ++it) {
417 it != ctx.mPicParamSets.end(); ++it) {
/frameworks/av/media/libmedia/
H A DIOMX.cpp80 ComponentInfo &info = *--list->end();
435 it != list.end(); ++it) {
441 role_it != cur.mRoles.end(); ++role_it) {
H A DMetadata.cpp73 const size_t end = mData->dataPosition(); local
76 mData->writeInt32(end - mBegin);
77 mData->setDataPosition(end);
H A DSoundPool.cpp298 for (iter = mChannels.begin(); iter != mChannels.end(); ++iter) {
311 for (List<SoundChannel*>::iterator iter = mChannels.begin(); iter != mChannels.end(); ++iter) {
908 } // end namespace android
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp264 char *end; local
269 *val = strtoll(s, &end, 10);
271 if (end == s || errno == ERANGE) {
276 while (isspace(*end)) {
277 ++end;
283 return *end == '\0';
720 break; // Reaches the end
1498 // Audio source is added at the end if it exists.
/frameworks/av/media/libstagefright/
H A DACodec.cpp2067 while (it != queue.end()) {
H A DCameraSource.cpp741 it != mFramesBeingEncoded.end(); ++it) {
H A DDataSource.cpp81 it != gSniffers.end(); ++it) {
102 it != gSniffers.end(); ++it) {
H A DMPEG4Writer.cpp110 while (it != mTableEntryList.end() && iterations > 0) {
114 CHECK(it != mTableEntryList.end());
131 while (it != mTableEntryList.end() && iterations > 0) {
135 CHECK(it != mTableEntryList.end());
173 it != mTableEntryList.end(); ++it) {
401 it != mTracks.end(); ++it) {
439 it != mTracks.end(); ++it) {
501 // Any long duration recording will be probably end up with
643 it != mTracks.end(); ++it) {
748 it != mTracks.end();
[all...]
H A DNuCachedSource2.cpp76 while (it != list->end()) {
H A DTimedEventQueue.cpp108 while (it != mQueue.end() && realtime_us >= (*it).realtime_us) {
161 while (it != mQueue.end()) {
277 it != mQueue.end(); ++it) {
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DAutoCorrelation_v5.s167 .end
H A DCalcWindowEnergy_v5.s112 .end
H A DPrePostMDCT_v5.s131 .end
H A DR4R8First_v5.s252 .end
H A DRadix4FFT_v5.s169 .end
H A Dband_nrg_v5.s204 .end
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dresidu_asm_opt.s218 end:
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h284 dataPointArray *end; /*quantization levels for the past (20) frames */ member in struct:tagAVCRateControl
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp1212 UChar *end; local
1217 end = pred + (16 << 3);
1231 while (pred < end) ;
1249 UChar *end; local
1255 end = cur + (width << 3);
1272 while (cur < end) ;
H A Dfastcodemb.cpp532 UChar *end = cur + (width << 3); local
575 while ((UInt)curInt < (UInt)end);
597 UChar *end = cur + (width << 3); local
614 while ((UInt)curInt < (UInt)end);

Completed in 5788 milliseconds

1234567891011>>