Searched defs:end (Results 1 - 25 of 387) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraParameters.cpp301 char *end; local
302 int w = (int)strtol(str, &end, 10);
304 if (*end != delim) {
310 int h = (int)strtol(end+1, &end, 10);
316 *endptr = end;
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp434 ALOGI("Received end-of-stream");
801 char* end; local
804 width = strtol(widthHeight, &end, 10);
805 if (end == widthHeight || *end != 'x' || *(end+1) == '\0') {
809 height = strtol(end + 1, &end, 10);
810 if (*end != '\0') {
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp325 int64_t end = systemTime(); local
333 fprintf(stderr, "encoding %d frames in %" PRId64 " us\n", nFrames, (end-start)/1000);
334 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
H A Dstagefright.cpp361 printf("seeking past the end now.");
741 char *end; local
742 long x = strtol(optarg, &end, 10);
744 if (*end != '\0' || end == optarg || x <= 0) {
920 it != list.end(); ++it) {
923 itRoles != (*it).mRoles.end() ; ++itRoles) {
1001 char *end; local
1002 long sampleRate = strtol(filename + 5, &end, 10);
1004 if (end
[all...]
/frameworks/av/include/media/
H A DRingBuffer.h130 * Get an iterator to the end of this RingBuffer.
132 iterator end();
140 * Get a const_iterator to the end of this RingBuffer.
142 const_iterator end() const;
310 typename RingBuffer<T>::iterator RingBuffer<T>::end() { function in class:android::RingBuffer
323 typename RingBuffer<T>::const_iterator RingBuffer<T>::end() const { function in class:android::RingBuffer
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
H A DTiffWriter.h94 Endianness end = LITTLE);
107 virtual status_t write(Output* out, Endianness end = LITTLE);
190 * Create an empty IFD with the given ID and add it to the end of the
244 uint32_t count, Endianness end, const T* data);
315 Endianness end, const T* data) {
316 TiffEntryImpl<T>* entry = new TiffEntryImpl<T>(tag, type, count, end, data);
314 uncheckedBuildEntry(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data) argument
/frameworks/av/media/img_utils/src/
H A DEndianUtils.cpp22 EndianOutput::EndianOutput(Output* out, Endianness end) argument
23 : mOffset(0), mOutput(out), mEndian(end) {}
36 void EndianOutput::setEndianness(Endianness end) { argument
37 mEndian = end;
H A DTiffWriter.cpp60 Endianness end) {
62 EndianOutput endOut(out, end);
132 status_t TiffWriter::write(Output* out, Endianness end) { argument
134 EndianOutput endOut(out, end);
59 write(Output* out, StripSource** sources, size_t sourcesCount, Endianness end) argument
/frameworks/av/media/libeffects/loudness/dsp/core/
H A Dbasic-inl.h32 int end = end_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
36 end = i;
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp146 goto end;
154 goto end;
159 goto end;
165 goto end;
195 goto end;
239 goto end;
255 goto end;
310 goto end;
315 end:
442 goto end;
997 size_t end = mState.mLoopCount != 0 ? mState.mLoopEnd : mFrameCount; local
[all...]
H A DCharacterEncodingDetector.cpp404 // no need to check any further, we'll end up using this match anyway
452 int end = 511; // All the tables have 512 entries local
453 int mid = (start+end)/2;
455 while(start <= end) {
461 end = mid - 1;
464 mid = (start + end) / 2;
H A DMetadata.cpp73 const size_t end = mData->dataPosition(); local
76 mData->writeInt32(end - mBegin);
77 mData->setDataPosition(end);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp275 char *end; local
280 *val = strtof(s, &end);
282 if (end == s || errno == ERANGE) {
287 while (isspace(*end)) {
288 ++end;
294 return *end == '\0';
300 char *end; local
305 *val = strtoll(s, &end, 10);
307 if (end == s || errno == ERANGE) {
312 while (isspace(*end)) {
[all...]
/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp189 size_t end = srcOffset + nalLength; local
190 if (end > len || end < srcOffset) {
H A DMediaCodecList.cpp55 char *end; local
56 unsigned long res = strtoul(s, &end, 10);
57 return *s != '\0' && *end == '\0' && res > 0;
403 // [a-zA-Z0-9_.] and must start with media_codecs_ and end with .xml
/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.cpp535 UChar *end = cur + (width << 3); local
578 while ((uintptr_t)curInt < (uintptr_t)end);
602 UChar *end = cur + (width << 3); local
619 while ((uintptr_t)curInt < (uintptr_t)end);
H A Dmotion_comp.cpp1946 UChar *end; local
1953 end = prev + (lx << 3);
1962 while ((uintptr_t)src < (uintptr_t)end);
H A Dmp4enc_api.cpp1663 /* Modify the intialize flag at the end.*/
1675 /* Purpose : Enter a video frame and perform front-end time check plus ME */
1988 /* Modify the intialize flag at the end.*/
2995 Int i, j, start, end; local
3230 end = index;
3236 end = index;
3241 for (i = start; i <= end; i++)
3250 if (i > end) return PV_FALSE;
3295 } /* end of: if(nLayers == 1) */
H A Drate_control.h64 dataPointArray *end; /*quantization levels for the past (20) frames */ member in struct:__anon488
H A Dvlc_encode_inline.h26 UInt end, match; local
33 end = 1;
35 end = 1 << (32 - nc);
37 while (match >= end)
73 end = 1 << (32 - nc);
74 while (match >= end)
117 UInt end, match; local
135 mov end, #0x80000000 local
136 mov end, end, ls local
176 mov end, #0x80000000 local
177 mov end, end, lsr run /* mask*/ local
231 UInt end = 0, match; local
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp55 char *end; local
57 long level = strtol(current, &end, 10);
58 while (isspace(*end)) {
59 ++end;
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
H A DParsedMessage.cpp70 char *end; local
71 *value = strtol(stringValue.c_str(), &end, 10);
73 if (end == stringValue.c_str() || *end != '\0') {
213 char *end; local
214 *statusCode = strtol(statusCodeString.c_str(), &end, 10);
216 if (*end != '\0' || end == statusCodeString.c_str()
290 char *end; local
291 *value = strtol(stringValue.c_str(), &end, 1
[all...]

Completed in 415 milliseconds

1234567891011>>