Searched refs:int32_t (Results 1 - 25 of 1372) sorted by relevance

1234567891011>>

/frameworks/native/libs/arect/include/android/
H A Drect.h44 typedef int32_t value_type;
47 int32_t left;
49 int32_t top;
51 int32_t right;
53 int32_t bottom;
/frameworks/av/media/libaudioprocessing/audio-resampler/
H A DAudioResamplerCoefficients.cpp24 const int32_t RESAMPLE_FIR_NUM_COEF = 16;
25 const int32_t RESAMPLE_FIR_LERP_INT_BITS = 7;
33 const int32_t* readResamplerCoefficients(bool upSample) {
37 return (const int32_t *) up_sampler_filter_coefficients;
39 return (const int32_t *) dn_sampler_filter_coefficients;
44 int32_t readResampleFirNumCoeff() {
48 int32_t readResampleFirLerpIntBits() {
/frameworks/av/media/libstagefright/filters/
H A DColorConvert.h25 int32_t y, int32_t u, int32_t v,
26 int32_t* r, int32_t* g, int32_t* b);
29 uint8_t *pY, uint8_t *pUV, int32_t width, int32_t height,
33 uint8_t *pY, uint8_t *pUV, int32_t width, int32_t heigh
[all...]
H A DColorConvert.cpp29 int32_t y, int32_t u, int32_t v,
30 int32_t* r, int32_t* g, int32_t* b) {
49 uint8_t *pY, uint8_t *pUV, int32_t width, int32_t height,
51 const int32_t bytes_per_pixel = 2;
53 for (int32_t
[all...]
/frameworks/av/media/libaaudio/src/utility/
H A DFixedBlockReader.h37 int32_t open(int32_t bytesPerFixedBlock) override;
39 int32_t readFromStorage(uint8_t *buffer, int32_t numBytes);
44 int32_t processVariableBlock(uint8_t *buffer, int32_t numBytes) override;
H A DFixedBlockAdapter.h28 virtual int32_t onProcessFixedBlock(uint8_t *buffer, int32_t numBytes) = 0;
45 virtual int32_t open(int32_t bytesPerFixedBlock);
57 virtual int32_t processVariableBlock(uint8_t *buffer, int32_t numBytes) = 0;
62 int32_t close();
67 int32_t mSize = 0; // Size in bytes of the fixed size buffer.
68 int32_t mPosition = 0; // Offset of the last byte read or written.
H A DAAudioUtilities.h48 int32_t numSamples,
66 int32_t numFrames,
67 int32_t samplesPerFrame,
77 //void AAudioConvert_pcm16ToFloat(const int16_t *source, int32_t numSamples,
90 int32_t numSamples,
108 int32_t numFrames,
109 int32_t samplesPerFrame,
128 int32_t numFrames,
129 int32_t samplesPerFrame,
148 int32_t numFrame
[all...]
H A DFixedBlockWriter.h35 int32_t writeToStorage(uint8_t *buffer, int32_t numBytes);
40 int32_t processVariableBlock(uint8_t *buffer, int32_t numBytes) override;
/frameworks/av/media/libeffects/testlibs/
H A DEffectsMath.h61 (((int32_t)(a) * (int32_t)(b)) >> 15)
66 (((int32_t)(a) * (int32_t)(b) ) << 1)
71 (((int32_t)(a) * (int32_t)(b) ) >> 1)
76 (((int32_t)((a) << 7) * (int32_t)(b)) >> 15)
108 #define PHASE_ONE (int32_t) (0x1L << NUM_PHASE_FRAC_BITS)
117 (int32_t)( \
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DFrame.h30 Frame(int32_t width, int32_t height, int32_t bufferAge)
35 int32_t width() const { return mWidth; }
36 int32_t height() const { return mHeight; }
40 int32_t bufferAge() const { return mBufferAge; }
46 int32_t mWidth;
47 int32_t mHeight;
48 int32_t mBufferAge;
53 // If out is not an int32_t[
[all...]
/frameworks/hardware/interfaces/schedulerservice/1.0/
H A DISchedulingPolicyService.hal19 enum Priority : int32_t {
33 requestPriority(int32_t pid, int32_t tid, int32_t priority)
42 getMaxAllowedPriority() generates (int32_t priority);
/frameworks/av/include/media/stagefright/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
70 int32_t width() const {return mWidth;}
71 int32_t height() const {return mHeight;}
75 bool validPixel(int32_t x, int32_t
[all...]
/frameworks/av/media/libstagefright/foundation/include/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
70 int32_t width() const {return mWidth;}
71 int32_t height() const {return mHeight;}
75 bool validPixel(int32_t x, int32_t
[all...]
/frameworks/av/media/libstagefright/include/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
70 int32_t width() const {return mWidth;}
71 int32_t height() const {return mHeight;}
75 bool validPixel(int32_t x, int32_t
[all...]
/frameworks/av/media/libaaudio/tests/
H A Dtest_block_adapter.cpp38 void fillSequence(int32_t *indexBuffer, int32_t frameCount) {
45 int checkSequence(const int32_t *indexBuffer, int32_t frameCount) {
48 int32_t expected = mTestIndex++;
49 int32_t actual = indexBuffer[i];
58 int32_t mTestBuffer[TEST_BUFFER_SIZE];
59 int32_t mTestIndex;
60 int32_t mLastIndex;
67 mFixedBlockWriter.open(sizeof(int32_t) * FIXED_BLOCK_SIZ
[all...]
/frameworks/hardware/interfaces/sensorservice/1.0/
H A DIEventQueue.hal39 enableSensor(int32_t sensorHandle,
40 int32_t samplingPeriodUs,
52 disableSensor(int32_t sensorHandle) generates (Result result);
/frameworks/av/media/libaaudio/src/binding/
H A DRingBufferParcelable.h35 void setupMemory(int32_t sharedMemoryIndex,
36 int32_t dataMemoryOffset,
37 int32_t dataSizeInBytes,
38 int32_t readCounterOffset,
39 int32_t writeCounterOffset,
40 int32_t counterSizeBytes);
42 void setupMemory(int32_t sharedMemoryIndex,
43 int32_t dataMemoryOffset,
44 int32_t dataSizeInBytes);
46 int32_t getBytesPerFram
[all...]
/frameworks/native/include/input/
H A DKeyLayoutMap.h43 int32_t axis;
46 int32_t highAxis;
49 int32_t splitValue;
52 int32_t flatOverride;
67 status_t mapKey(int32_t scanCode, int32_t usageCode,
68 int32_t* outKeyCode, uint32_t* outFlags) const;
69 status_t findScanCodesForKey(int32_t keyCode, Vector<int32_t>* outScanCodes) const;
70 status_t findScanCodeForLed(int32_t ledCod
[all...]
H A DKeyCharacterMap.h70 int32_t keyCode;
71 int32_t metaState;
89 int32_t getKeyboardType() const;
93 char16_t getDisplayLabel(int32_t keyCode) const;
99 char16_t getNumber(int32_t keyCode) const;
104 char16_t getCharacter(int32_t keyCode, int32_t metaState) const;
110 bool getFallbackAction(int32_t keyCode, int32_t metaState,
117 char16_t getMatch(int32_t keyCod
[all...]
/frameworks/base/core/jni/include/android_runtime/
H A Dandroid_app_NativeActivity.h32 ANativeActivity* activity, int32_t format);
35 ANativeActivity* activity, int32_t values, int32_t mask);
38 ANativeActivity* activity, int32_t flags);
41 ANativeActivity* activity, int32_t flags);
/frameworks/native/include/binder/
H A DIProcessInfoService.h31 /*in*/ int32_t* pids,
32 /*out*/ int32_t* states) = 0;
35 /*in*/ int32_t* pids,
36 /*out*/ int32_t* states,
37 /*out*/ int32_t* scores) = 0;
/frameworks/native/libs/binder/include/binder/
H A DIProcessInfoService.h31 /*in*/ int32_t* pids,
32 /*out*/ int32_t* states) = 0;
35 /*in*/ int32_t* pids,
36 /*out*/ int32_t* states,
37 /*out*/ int32_t* scores) = 0;
/frameworks/native/libs/nativewindow/include/android/
H A Dnative_window.h88 int32_t width;
91 int32_t height;
95 int32_t stride;
98 int32_t format;
123 int32_t ANativeWindow_getWidth(ANativeWindow* window);
130 int32_t ANativeWindow_getHeight(ANativeWindow* window);
137 int32_t ANativeWindow_getFormat(ANativeWindow* window);
156 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window,
157 int32_t width, int32_t heigh
[all...]
/frameworks/native/services/inputflinger/
H A DEventHub.h74 int32_t deviceId;
75 int32_t type;
76 int32_t code;
77 int32_t value;
84 int32_t minValue; // minimum value
85 int32_t maxValue; // maximum value
86 int32_t flat; // center flat position, eg. flat == 8 means center is between -8 and 8
87 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise
88 int32_t resolution; // resolution in units per mm or radians per mm
154 extern uint32_t getAbsAxisUsage(int32_t axi
[all...]
/frameworks/av/media/ndk/
H A DNdkImagePriv.h35 AImage(AImageReader* reader, int32_t format, uint64_t usage, BufferItem* buffer,
36 int64_t timestamp, int32_t width, int32_t height, int32_t numPlanes);
52 media_status_t getWidth(/*out*/int32_t* width) const;
53 media_status_t getHeight(/*out*/int32_t* height) const;
54 media_status_t getFormat(/*out*/int32_t* format) const;
55 media_status_t getNumPlanes(/*out*/int32_t* numPlanes) const;
61 media_status_t getPlanePixelStride(int planeIdx, /*out*/int32_t* pixelStride) const;
62 media_status_t getPlaneRowStride(int planeIdx, /*out*/int32_t* rowStrid
[all...]

Completed in 2681 milliseconds

1234567891011>>