HomeSort by relevance Sort by last modified time
    Searched refs:int64_t (Results 76 - 100 of 1292) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/include/media/stagefright/
AudioSource.h 52 status_t dataCallbackTimestamp(const AudioRecord::Buffer& buffer, int64_t timeUs);
81 int64_t mStartTimeUs;
83 int64_t mPrevSampleTimeUs;
84 int64_t mInitialReadTimeUs;
85 int64_t mNumFramesReceived;
86 int64_t mNumClientOwnedBuffers;
MediaSource.h 78 void setSeekTo(int64_t time_us, SeekMode mode = SEEK_CLOSEST_SYNC);
80 bool getSeekTo(int64_t *time_us, SeekMode *mode) const;
82 void setLateBy(int64_t lateness_us);
83 int64_t getLateBy() const;
91 int64_t mSeekTimeUs;
93 int64_t mLatenessUs;
MPEG4Writer.h 49 void writeInt64(int64_t x);
86 int64_t mStartTimestampUs;
98 void setStartTimestampUs(int64_t timeUs);
99 int64_t getStartTimestampUs(); // Not const
102 int64_t estimateMoovBoxSize(int32_t bitRate);
106 int64_t mTimeStampUs; // Timestamp of the 1st sample
112 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples)
122 int64_t mPrevChunkTimestampUs;
125 int64_t mMaxInterChunkDurUs;
156 int64_t mDriftTimeUs
    [all...]
  /frameworks/base/media/libstagefright/include/
TimedEventQueue.h 45 virtual void fire(TimedEventQueue *queue, int64_t now_us) = 0;
78 event_id postEventWithDelay(const sp<Event> &event, int64_t delay_us);
82 event_id postTimedEvent(const sp<Event> &event, int64_t realtime_us);
97 static int64_t getRealTimeUs();
102 int64_t realtime_us;
106 virtual void fire(TimedEventQueue *queue, int64_t now_us) {
LiveSession.h 49 void seekTo(int64_t timeUs);
51 status_t getDuration(int64_t *durationUs);
93 int64_t mLastPlaylistFetchTimeUs;
96 int64_t mSeekTimeUs;
101 int64_t mDurationUs;
130 void postMonitorQueue(int64_t delayUs = 0);
132 bool timeToRefreshPlaylist(int64_t nowUs) const;
AwesomePlayer.h 68 status_t setDataSource(int fd, int64_t offset, int64_t length);
88 status_t getDuration(int64_t *durationUs);
89 status_t getPosition(int64_t *positionUs);
95 status_t seekTo(int64_t timeUs);
100 void postAudioEOS(int64_t delayUs = 0ll);
175 int64_t mDurationUs;
184 int64_t mTimeSourceDeltaUs;
185 int64_t mVideoTimeUs;
195 int64_t mSeekTimeUs
    [all...]
  /frameworks/base/opengl/libagl/
matrix.h 79 return (( int64_t(a)*a +
80 int64_t(b)*b +
81 int64_t(c)*c + 0x8000)>>16);
109 return (( int64_t(a0)*b0 +
110 int64_t(a1)*b1)>>16) + c;
141 return (( int64_t(a0)*b0 +
142 int64_t(a1)*b1 +
143 int64_t(a2)*b2)>>16) + c;
180 accum = int64_t(a0)*int16_t(b0) >> 16;
181 accum += int64_t(a1)*int16_t(b1) >> 16
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
fxp_mul32_c_equivalent.h 156 z = (Int32)(((int64_t)x * (rTmp0 << 16)) >> 32);
157 z += (Int32)(((int64_t)y * (iTmp0 << 16)) >> 32);
167 z = (Int32)(((int64_t) L_var1 * (L_var2 << 16)) >> 32);
180 z = (Int32)(((int64_t) L_var1 * (rTmp0 << 16)) >> 32);
190 L_add += (Int32)(((int64_t) L_var1 * rTmp0) >> 32);
195 __inline int64_t fxp_mac64_Q31(int64_t sum, const Int32 L_var1, const Int32 L_var2)
197 sum += (int64_t)L_var1 * L_var2;
203 return (Int32)(((int64_t)(a) * b) >> 32);
208 return (L_add + (Int32)(((int64_t)(a) * b) >> 32))
    [all...]
  /external/icu4c/i18n/unicode/
regex.h 408 * <code>utext_openUChars(UText *ut, const UChar *text, int64_t textLength, UErrorCode *status);</code>
742 * <code>utext_openUChars(UText *ut, const UChar *text, int64_t textLength, UErrorCode *status);</code>
778 virtual UBool matches(int64_t startIndex, UErrorCode &status);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 38 int64_t Offset;
40 explicit MachinePointerInfo(const Value *v = 0, int64_t offset = 0)
43 MachinePointerInfo getWithOffset(int64_t O) const {
58 static MachinePointerInfo getFixedStack(int FI, int64_t offset = 0);
69 static MachinePointerInfo getStack(int64_t Offset);
124 int64_t getOffset() const { return PtrInfo.Offset; }
154 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; }
  /frameworks/base/libs/ui/
GraphicLog.cpp 44 void writeInt64(uint8_t* base, size_t& pos, int64_t value) {
46 int64_t v = value;
48 int64_t v = htole64(value);
51 memcpy(&base[pos+1], &v, sizeof(int64_t));
52 pos += 1+sizeof(int64_t);
57 uint8_t scratch[2 + 2 + sizeof(int32_t) + sizeof(int64_t)];
68 uint8_t scratch[2 + 3 + sizeof(int32_t) + sizeof(int32_t) + sizeof(int64_t)];
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.h 77 static const int64_t kMinPositionUpdateDelayUs;
90 int64_t mAnchorTimeMediaUs;
91 int64_t mAnchorTimeRealUs;
103 int64_t mLastPositionUpdateUs;
104 int64_t mVideoLateByUs;
107 void postDrainAudioQueue(int64_t delayUs = 0);
122 void notifyVideoLateBy(int64_t lateByUs);
  /external/llvm/test/CodeGen/CellSPU/useful-harnesses/
i64operations.c 4 int64_t tval_a = 1234567890003LL;
5 int64_t tval_b = 2345678901235LL;
6 int64_t tval_c = 1234567890001LL;
7 int64_t tval_d = 10001LL;
8 int64_t tval_e = 10000LL;
10 int64_t tval_g = -1;
15 i64_eq(int64_t a, int64_t b)
21 i64_neq(int64_t a, int64_t b
    [all...]
  /external/icu4c/test/cintltst/
utmstest.c 40 * Return a random int64_t where U_INT64_MIN <= ran <= U_INT64_MAX.
44 int64_t ran = 0;
61 static int64_t ranInt;
62 static int64_t ranMin;
63 static int64_t ranMax;
65 static void initRandom(int64_t min, int64_t max)
79 static int64_t randomInRange(void)
81 int64_t value;
100 static void roundTripTest(int64_t value, UDateTimeScale scale
    [all...]
  /external/icu4c/common/
uvectr64.cpp 52 if (initialCapacity > (int32_t)(INT32_MAX / sizeof(int64_t))) {
55 elements = (int64_t *)uprv_malloc(sizeof(int64_t)*initialCapacity);
93 void UVector64::setElementAt(int64_t elem, int32_t index) {
100 void UVector64::insertElementAt(int64_t elem, int32_t index, UErrorCode &status) {
139 if (newCap > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check
144 int64_t* newElems = (int64_t *)uprv_realloc(elements, sizeof(int64_t)*newCap);
160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for reallo
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
TextCheckerWin.cpp 85 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy* page)
90 void TextChecker::closeSpellDocumentWithTag(int64_t tag)
95 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength)
100 void TextChecker::checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength)
115 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord)
120 void TextChecker::updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const GrammarDetail& grammarDetail)
125 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
130 void TextChecker::learnWord(int64_t spellDocumentTag, const String& word)
135 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
  /external/llvm/include/llvm/Support/
MemoryBuffer.h 67 int64_t FileSize = -1,
71 int64_t FileSize = -1,
80 int64_t Offset = 0,
118 int64_t FileSize = -1);
121 int64_t FileSize = -1);
  /external/qemu/android/utils/
ini.h 64 int64_t iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue );
83 int64_t iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue );
88 void iniFile_setInt64( IniFile* f, const char* key, int64_t value );
91 void iniFile_setDiskSize( IniFile* f, const char* key, int64_t size );
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 76 int64_t lastInsertRowID();
88 int64_t maximumSize();
89 void setMaximumSize(int64_t);
92 int64_t freeSpaceSize();
93 int64_t totalSize();
  /frameworks/base/media/libstagefright/
ThrottledSource.cpp 23 static int64_t getNowUs() {
27 return (int64_t)tv.tv_usec + tv.tv_sec * 1000000ll;
55 int64_t nowUs = getNowUs();
63 int64_t durationUs =
66 int64_t whenUs = mStartTimeUs + durationUs;
  /frameworks/base/media/libstagefright/timedtext/
TimedTextParser.h 39 status_t getText(AString *text, int64_t *startTimeUs, int64_t *endTimeUs,
51 int64_t endTimeUs;
61 KeyedVector<int64_t, TextInfo> mTextVector;
64 off64_t *offset, int64_t *startTimeUs, TextInfo *info);
  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 48 int64_t LocalOffset; // Local offset of the frame idx referenced
50 FrameRef(MachineBasicBlock::iterator I, int64_t Offset) :
59 SmallVector<int64_t,16> LocalOffsets;
61 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
119 int FrameIdx, int64_t &Offset,
135 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
158 int64_t Offset = 0;
201 lookupCandidateBaseReg(const SmallVector<std::pair<unsigned, int64_t>, 8> &Regs,
202 std::pair<unsigned, int64_t> &RegOffset,
203 int64_t FrameSizeAdjust
    [all...]
  /external/qemu/block/
qcow2.h 108 int64_t free_cluster_index;
109 int64_t free_byte_offset;
127 int64_t l1_table_offset;
128 int64_t refcount_table_offset;
129 int64_t refcount_block_offset;
148 static inline int size_to_clusters(BDRVQcowState *s, int64_t size)
153 static inline int size_to_l1(BDRVQcowState *s, int64_t size)
159 static inline int64_t align_offset(int64_t offset, int n)
170 int64_t sector_num, uint8_t *buf, int nb_sectors)
    [all...]
  /development/tools/emulator/opengl/tests/event_injector/
iolooper.h 50 int iolooper_wait( IoLooper* iol, int64_t duration );
61 int64_t iolooper_now(void);
70 * int64_t deadline = iolooper_now() + TIMEOUT;
85 int iolooper_wait_absolute(IoLooper* iol, int64_t deadline);
  /external/qemu/
iolooper.h 31 int iolooper_wait( IoLooper* iol, int64_t duration );
42 int64_t iolooper_now(void);
51 * int64_t deadline = iolooper_now() + TIMEOUT;
66 int iolooper_wait_absolute(IoLooper* iol, int64_t deadline);

Completed in 2493 milliseconds

1 2 34 5 6 7 8 91011>>