OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mInputSize
(Results
1 - 11
of
11
) sorted by null
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.h
55
size_t
mInputSize
;
SoftAMRNBEncoder.cpp
51
mInputSize
(0),
286
while (
mInputSize
< numBytesPerInputFrame) {
301
size_t copy = numBytesPerInputFrame -
mInputSize
;
306
if (
mInputSize
== 0) {
310
memcpy((uint8_t *)mInputFrame +
mInputSize
, inData, copy);
311
mInputSize
+= copy;
327
memset((uint8_t *)mInputFrame +
mInputSize
,
329
numBytesPerInputFrame -
mInputSize
);
331
mInputSize
= numBytesPerInputFrame;
394
mInputSize
= 0
[
all
...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/
SoftAMRWBEncoder.h
61
size_t
mInputSize
;
SoftAMRWBEncoder.cpp
52
mInputSize
(0),
333
while (
mInputSize
< numBytesPerInputFrame) {
348
size_t copy = numBytesPerInputFrame -
mInputSize
;
353
if (
mInputSize
== 0) {
357
memcpy((uint8_t *)mInputFrame +
mInputSize
, inData, copy);
358
mInputSize
+= copy;
374
memset((uint8_t *)mInputFrame +
mInputSize
,
376
numBytesPerInputFrame -
mInputSize
);
378
mInputSize
= numBytesPerInputFrame;
408
inputData.Length =
mInputSize
;
[
all
...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.cpp
79
mInputSize
= 0;
85
mInputSize
+= mProximityInfoStates[i].size();
dic_traverse_session.h
64
mMultiBigramMap(),
mInputSize
(0), mPartiallyCommited(false), mMaxPointerCount(1),
99
int getInputSize() const { return
mInputSize
; }
205
int
mInputSize
;
/frameworks/av/media/libstagefright/codecs/aacenc/
SoftAACEncoder.h
61
size_t
mInputSize
;
SoftAACEncoder2.h
59
size_t
mInputSize
;
SoftAACEncoder.cpp
53
mInputSize
(0),
422
while (
mInputSize
< numBytesPerInputFrame) {
437
size_t copy = numBytesPerInputFrame -
mInputSize
;
446
if (
mInputSize
== 0) {
450
memcpy((uint8_t *)mInputFrame +
mInputSize
, inData, copy);
451
mInputSize
+= copy;
468
memset((uint8_t *)mInputFrame +
mInputSize
,
470
numBytesPerInputFrame -
mInputSize
);
472
mInputSize
= numBytesPerInputFrame;
550
mInputSize
= 0
[
all
...]
SoftAACEncoder2.cpp
49
mInputSize
(0),
404
while (
mInputSize
< numBytesPerInputFrame) {
419
size_t copy = numBytesPerInputFrame -
mInputSize
;
428
if (
mInputSize
== 0) {
432
memcpy((uint8_t *)mInputFrame +
mInputSize
, inData, copy);
433
mInputSize
+= copy;
449
memset((uint8_t *)mInputFrame +
mInputSize
,
451
numBytesPerInputFrame -
mInputSize
);
453
mInputSize
= numBytesPerInputFrame;
568
mInputSize
= 0
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/
TimerSetupView.java
35
protected int
mInputSize
= 5;
38
protected int mInput [] = new int [
mInputSize
];
152
if (mInputPointer <
mInputSize
- 1) {
193
for (int i = 0; i <
mInputSize
; i ++) {
210
if (input != null &&
mInputSize
== input.length) {
211
for (int i = 0; i <
mInputSize
; i++) {
Completed in 84 milliseconds