OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mInputIndex
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_state_input.h
32
// TODO: The initial value for
mInputIndex
should be -1?
33
//
mInputIndex
[i] = i == 0 ? 0 : -1;
34
mInputIndex
[i] = 0;
42
mInputIndex
[i] = src->
mInputIndex
[i];
51
mInputIndex
[pointerId] = inputIndex;
66
if (
mInputIndex
[pointerId] < 0) {
67
mInputIndex
[pointerId] = val;
69
mInputIndex
[pointerId] =
mInputIndex
[pointerId] + val
[
all
...]
/frameworks/av/media/libaudioprocessing/include/media/
AudioResampler.h
81
virtual size_t getUnreleasedFrames() const { return
mInputIndex
; }
111
size_t
mInputIndex
;
/hardware/intel/common/utils/ISV/include/
isv_worker.h
187
uint32_t
mInputIndex
;
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_nodes_cache.h
44
mInputIndex
(0), mLastCachedInputIndex(0) {}
49
mInputIndex
= 0;
80
return inputIndex ==
mInputIndex
- 1;
83
if (
mInputIndex
< inputSize) {
84
mInputIndex
++;
121
const bool shouldCache = (cacheInputIndex ==
mInputIndex
)
127
mLastCachedInputIndex =
mInputIndex
;
141
mInputIndex
= mLastCachedInputIndex;
186
int
mInputIndex
;
dic_node.h
63
: mNeedsToUpdateInputStateG(false), mPointerId(0),
mInputIndex
(0),
69
int16_t
mInputIndex
;
495
inputStateG->
mInputIndex
);
498
inputStateG->
mInputIndex
, inputStateG->mPrevCodePoint,
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/audio/
MediaCodecAudioDecoder.java
46
private int
mInputIndex
;
100
mInputIndex
= INDEX_INVALID;
111
mInputIndex
= INDEX_INVALID;
122
mInputIndex
= INDEX_INVALID;
139
return
mInputIndex
;
144
if (
mInputIndex
< 0) {
145
mInputIndex
= mCodec.dequeueInputBuffer(0);
146
if (
mInputIndex
< 0) {
149
return mCodec.getInputBuffer(
mInputIndex
);
151
return mCodec.getInputBuffer(
mInputIndex
);
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
HeifWriterTest.java
101
private int
mInputIndex
;
398
mInputIndex
= 0;
519
generateSurfaceFrame(
mInputIndex
, width, height);
520
mInputEglSurface.setPresentationTime(1000 * computePresentationTime(
mInputIndex
));
522
mInputIndex
++;
/frameworks/support/heifwriter/src/androidTest/java/androidx/heifwriter/
HeifWriterTest.java
87
private int
mInputIndex
;
398
mInputIndex
= 0;
509
generateSurfaceFrame(
mInputIndex
, width, height);
510
mInputEglSurface.setPresentationTime(1000 * computePresentationTime(
mInputIndex
));
512
mInputIndex
++;
/frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
HeifEncoder.java
91
private int
mInputIndex
;
369
computePresentationTime(
mInputIndex
+ mNumTiles - 1));
382
1000 * computePresentationTime(
mInputIndex
++));
465
computePresentationTime(
mInputIndex
),
466
computePresentationTime(
mInputIndex
+ mNumTiles - 1));
544
boolean inputEOS = (
mInputIndex
% mNumTiles == 0) && (currentBuffer.remaining() == 0);
548
int left = mGridWidth * (
mInputIndex
% mGridCols);
549
int top = mGridHeight * (
mInputIndex
/ mGridCols % mGridRows);
556
computePresentationTime(
mInputIndex
++),
559
if (inputEOS ||
mInputIndex
% mNumTiles == 0)
[
all
...]
Completed in 400 milliseconds