Searched refs:Size (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJITRegistrar.h41 void registerObjectWithGDB(const ObjectBuffer* Object, std::size_t Size);
H A DGDBJITRegistrar.cpp93 void registerObject(const ObjectBuffer* Object, std::size_t Size);
153 void GDBJITRegistrar::registerObject(const ObjectBuffer* Object, std::size_t Size) { argument
166 JITCodeEntry->symfile_size = Size;
168 ObjectBufferMap[Object] = std::make_pair(Size, JITCodeEntry);
231 void registerObjectWithGDB(const ObjectBuffer* Object, std::size_t Size) { argument
234 Registrar->registerObject(Object, Size);
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DInstAlloc.c40 Size - The size in bytes of the new added member
49 LVM_UINT32 Size )
54 Size = ((Size + 3) & 0xFFFFFFFC); /* Ceil the size to a multiple of four */
56 pms->TotalSize += Size;
57 pms->pNextMember += Size;
118 * Description : This function reserves Size of 3 bytes for all memory regions and
142 LVM_UINT32 Size[],
148 NewMemberAddress = InstAlloc_AddMember(&pms[LVM_PERSISTENT_SLOW_DATA], Size[LVM_PERSISTENT_SLOW_DATA]);
150 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size
141 InstAlloc_AddMemberAll( INST_ALLOC *pms, LVM_UINT32 Size[], LVM_MemoryTable_st *pMemoryTable) argument
176 InstAlloc_AddMemberAllRet( INST_ALLOC *pms, LVM_UINT32 Size[], void **ptr) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DInstAlloc.h55 Size - The size in bytes of the new added member
63 void* InstAlloc_AddMember( INST_ALLOC *pms, LVM_UINT32 Size );
76 LVM_UINT32 Size[],
80 LVM_UINT32 Size[],
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A Dwrapper_input.h41 virtual off_t Size() = 0;
H A Dfile_wrapper_input.h39 virtual off_t Size();
H A Din_memory_wrapper_input.h39 virtual off_t Size();
/frameworks/compile/libbcc/lib/Disassembler/
H A DDisassembler.cpp113 uint64_t Size; local
116 for (Index = 0; Index < FuncSize; Index += Size) {
119 if (Disassmbler->getInstruction(Inst, Size, *BufferMObj, Index,
129 if (Size == 0)
130 Size = 1; // skip illegible bytes
/frameworks/base/media/mca/filterfw/native/core/
H A Dvertex_frame.h44 int Size() const;
H A Dnative_frame.h57 int Size() { function in class:android::filterfw::NativeFrame
73 // Size of data buffer in bytes.
/frameworks/av/include/camera/
H A DCameraParameters.h25 struct Size { struct in namespace:android
29 Size() { function in struct:android::Size
34 Size(int w, int h) { function in struct:android::Size
61 void getSupportedPreviewSizes(Vector<Size> &sizes) const;
67 // getSupportedVideoSizes() returns an empty Vector of Size.
73 // empty Vector of Size.
81 void getSupportedVideoSizes(Vector<Size> &sizes) const;
86 // Vector of Size. If getSupportedVideoSizes() returns an empty
87 // Vector of Size, the width and height returned from this method
98 void getSupportedPictureSizes(Vector<Size>
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Init.c152 /* Maximum Internal Black Size should not be more than MAX_INTERNAL_BLOCKSIZE*/
217 CS_MemTab.Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].Size);
219 CS_MemTab.Region[LVM_MEMREGION_PERSISTENT_FAST_COEF].Size);
220 if (CS_MemTab.Region[LVM_MEMREGION_TEMPORARY_FAST].Size > AlgScratchSize) AlgScratchSize = CS_MemTab.Region[LVM_MEMREGION_TEMPORARY_FAST].Size;
250 DBE_MemTab.Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].Size);
252 DBE_MemTab.Region[LVM_MEMREGION_PERSISTENT_FAST_COEF].Size);
253 if (DBE_MemTab.Region[LVM_MEMREGION_TEMPORARY_FAST].Size > AlgScratchSize) AlgScratchSize = DBE_MemTab.Region[LVM_MEMREGION_TEMPORARY_FAST].Size;
284 EQNB_MemTab.Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].Size);
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_frame.cpp78 if (!data || size > frame->Size())
93 return ToJBool(AttachDataToJBuffer(env, buffer, data, frame->Size()));
122 if (!data || size > frame->Size() || (size % sizeof(jint)) != 0)
156 if (!data || size > frame->Size() || (size % sizeof(jfloat)) != 0)
174 if ((size / 4) != (frame->Size() / bytes_per_sample)) {
175 ALOGE("Size mismatch in native setBitmap()!");
184 const uint8_t* end_ptr = dst_ptr + frame->Size();
203 memcpy(dst_ptr, src_ptr, frame->Size());
227 if ((size / 4) != (frame->Size() / bytes_per_sample)) {
228 ALOGE("Size mismatc
[all...]
H A Djni_gl_frame.cpp131 if (frame && frame->Size() > 0) {
132 jbyteArray result = env->NewByteArray(frame->Size());
134 frame->CopyDataTo(reinterpret_cast<uint8_t*>(data), frame->Size());
160 if (frame && frame->Size() > 0 && (frame->Size() % sizeof(jint) == 0)) {
161 jintArray result = env->NewIntArray(frame->Size() / sizeof(jint));
163 frame->CopyDataTo(reinterpret_cast<uint8_t*>(data), frame->Size());
196 if (frame && frame->Size() > 0) {
198 jfloatArray result = env->NewFloatArray(frame->Size());
202 uint8_t* pixels = new uint8_t[frame->Size()];
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DReaderWriter_2_9.h107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] | local
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
/frameworks/compile/slang/BitWriter_2_9_func/
H A DReaderWriter_2_9_func.h107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] | local
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Init.c80 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Size = (LVM_UINT32)sizeof(LVCS_Instance_t);
87 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Size = (LVM_UINT32)sizeof(LVCS_Data_t);
94 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].Size = (LVM_UINT32)sizeof(LVCS_Coefficient_t);
102 pMemoryTable->Region[LVCS_MEMREGION_TEMPORARY_FAST].Size = ScratchSize;
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Din_memory_wrapper_input.cpp49 off_t InMemoryWrapperInput::Size() { function in class:InMemoryWrapperInput
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dmemalign.c49 MemInfo.Size = size + 1;
64 MemInfo.Size = size + alignment;
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dmem_align.c49 MemInfo.Size = size + 1;
64 MemInfo.Size = size + alignment;
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoMem.h34 VO_S32 Size; /*!< Buffer stride */ member in struct:__anon691
55 voMemInfo.Size=nSize; \
/frameworks/av/include/media/stagefright/
H A DCameraSource.h74 Size videoSize,
139 Size mVideoSize;
161 Size videoSize, int32_t frameRate,
200 int32_t cameraId, Size videoSize, int32_t frameRate,
205 int32_t cameraId, Size videoSize, int32_t frameRate,
/frameworks/av/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Init.c75 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Size = sizeof(LVDBE_Instance_t);
83 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Size = sizeof(LVDBE_Data_t);
91 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].Size = sizeof(LVDBE_Coef_t);
100 pMemoryTable->Region[LVDBE_MEMREGION_SCRATCH].Size = ScratchSize;
175 if (pMemoryTable->Region[i].Size!=0)
/frameworks/av/libvideoeditor/vss/common/inc/
H A DLVM_Types.h150 LVM_UINT32 Size; /* Region size in bytes */ member in struct:__anon96
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_GetMemoryTable.c153 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size = InstAlloc_GetTotal(&SlowData);
181 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Size = InstAlloc_GetTotal(&FastData);
190 pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].Size = InstAlloc_GetTotal(&FastCoef);
225 pMemoryTable->Region[LVM_TEMPORARY_FAST].Size = InstAlloc_GetTotal(&Temporary);

Completed in 929 milliseconds

123