HomeSort by relevance Sort by last modified time
    Searched full:psize (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/qemu/android/
resource.c 25 size_t *psize )
32 *psize = e->size;
43 size_t *psize )
46 return _resource_find( name, _file_entries, psize );
54 size_t *psize )
60 return _resource_find( name, _file_entries, psize );
resource.h 19 size_t *psize );
23 size_t *psize );
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MEGetBufSize.c 40 * pSize - pointer to the number of bytes required for the motion
46 * - pMEParams or pSize is NULL.
54 OMX_U32 *pSize
58 armRetArgErrIf(!pSize, OMX_Sts_BadArgErr);
65 *pSize = (OMX_INT) sizeof(ARMVCM4P10_MESpec);
omxVCM4P10_MEInit.c 53 * - pMEParams or pSize is NULL.
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_MEGetBufSize.c 40 * pSize - pointer to the number of bytes required for the specification
56 OMX_U32 *pSize
60 armRetArgErrIf(!pSize, OMX_Sts_BadArgErr);
65 *pSize = (OMX_INT) sizeof(ARMVCM4P2_MESpec);
  /system/media/wilhelm/src/itf/
IMetadataTraversal.c 66 SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize)
70 if (NULL == pSize) {
77 *pSize = size;
  /external/freetype/include/freetype/internal/services/
svttglyf.h 33 FT_ULong *psize );
  /frameworks/base/media/libmedia/
AudioEffect.cpp 269 if (param == NULL || param->psize == 0 || param->vsize == 0) {
274 uint32_t psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize; local
276 LOGV("setParameter: param: %d, param2: %d", *(int *)param->data, (param->psize == 8) ? *((int *)param->data + 1): -1);
278 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size, &param->status);
287 if (param == NULL || param->psize == 0 || param->vsize == 0) {
293 int psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize; local
294 int size = ((sizeof(effect_param_t) + psize - 1) / sizeof(int) + 1) * sizeof(int);
301 memcpy(p, param, sizeof(effect_param_t) + psize);
333 uint32_t psize = sizeof(effect_param_t) + ((param->psize - 1) \/ sizeof(int) + 1) * sizeof(int) + param->vsize; local
    [all...]
Visualizer.cpp 144 p->psize = sizeof(uint32_t);
277 p->psize = sizeof(uint32_t);
  /external/qemu/android/utils/
lineinput.h 37 * '*pSize' to save you a strlen() call.
39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
lineinput.c 85 lineInput_getLineAndSize( LineInput* input, size_t *pSize )
90 if (pSize)
91 *pSize = 0;
110 if (pSize != NULL) {
111 *pSize = ret;
path.h 77 /* return the size of a given file in '*psize'. returns 0 on
79 extern APosixStatus path_get_size( const char* path, uint64_t *psize );
161 * if 'pSize' is not NULL, this will set the file's size in '*pSize'
165 extern void* path_load_file( const char* path, size_t *pSize );
path.c 363 /* return the size of a given file in '*psize'. returns 0 on
366 path_get_size( const char* path, uint64_t *psize )
387 *psize = 0;
390 *psize = (uint64_t) size.QuadPart;
400 *psize = (uint64_t) st.st_size;
586 path_load_file(const char *fn, size_t *pSize)
592 if (pSize)
593 *pSize = 0;
604 if (pSize)
605 *pSize = (size_t) sz
    [all...]
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_FileReader.c 87 M4OSA_UInt32* pSize)
94 data, (M4OSA_NULL != pSize) ? (*pSize) : 0);
100 M4OSA_DEBUG_IF2(M4OSA_NULL == pSize, M4ERR_PARAMETER,
101 "M4OSA_fileReadData: pSize is M4OSA_NULL");
109 uiSizeRead = fread(data, sizeof(M4OSA_Char), *pSize,
114 *pSize = 0;
120 if ((M4OSA_UInt32)uiSizeRead < *pSize)
122 *pSize = uiSizeRead;
129 *pSize = uiSizeRead
    [all...]
LVOSA_FileReader_optim.c 655 * @param pSize : (INOUT) Size of the data to read (in byte).
657 * @return M4ERR_PARAMETER pSize, fileDescriptor or pData is NULL
663 M4OSA_UInt32* pSize)
674 pContext, pData, *pSize);
679 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pSize);
687 if((*pSize > 0) && (apContext->absolutePos >= apContext->fileSize))
712 if (*pSize <= (M4OSA_UInt32)apContext->buffer[selected_buffer].size)
731 M4OSA_TRACE3_3("read size = %lu buffer = %d pos = %ld", *pSize,
735 while(((M4OSA_UInt32)copiedSize < *pSize) && (err == M4NO_ERROR))
739 *pSize-copiedSize, pData+copiedSize)
    [all...]
  /external/qemu/
tcpdump.c 142 qemu_tcpdump_stats( uint64_t *pcount, uint64_t* psize )
145 *psize = capture_size;
tcpdump.h 34 extern void qemu_tcpdump_stats( uint64_t *pcount, uint64_t* psize );
  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 144 if (p->psize == 0 || p->vsize == 0) {
148 arg1 = sizeof(effect_param_t) + ((p->psize - 1) / sizeof(int) + 1) * sizeof(int);
512 jobject thiz, int psize, jbyteArray pJavaParam, int vsize,
530 if (psize == 0 || vsize == 0 || pJavaParam == NULL || pJavaValue == NULL) {
548 voffset = ((psize - 1) / sizeof(int) + 1) * sizeof(int);
550 memcpy(p->data, lpParam, psize);
551 p->psize = psize;
575 jobject thiz, jint psize, jbyteArray pJavaParam,
593 if (psize == 0 || vsize == 0 || pJavaParam == NULL || pJavaValue == NULL)
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.cpp 172 GLfloat pSize = *((GLfloat*)(pointsArr+(INDEX*stride)));
175 while(i < count && pSize == *((GLfloat*)(pointsArr+(INDEX*stride))))
181 s_glDispatch.glPointSize(pSize);
190 GLfloat pSize = *((GLfloat*)(pointsArr+((first+i)*stride)));
193 while(i < count && pSize == *((GLfloat*)(pointsArr+((first+i)*stride))))
199 s_glDispatch.glPointSize(pSize);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 430 int pSize = 0;
437 while (xPos < mContentWidth && pStart + pSize < candSize) {
438 int itemPos = pStart + pSize;
445 if (xPos + itemWidth < mContentWidth || 0 == pSize) {
448 pSize++;
455 mDecInfo.mPageStart.add(pStart + pSize);
459 float marginExtra = (mContentWidth - xPos) / pSize / 2;
470 } else if (pSize == 1) {
492 int pSize = mDecInfo.mPageStart.get(mPageNo + 1) - pStart;
494 if (mActiveCandInPage > pSize - 1)
    [all...]
  /external/quake/quake/src/QW/client/
sys_linux.c 415 int psize = getpagesize(); local
417 addr = (startaddr & ~(psize-1)) - psize;
422 r = mprotect((char*)addr, length + startaddr - addr + psize, 7);
  /external/quake/quake/src/WinQuake/
sys_sun.cpp 206 int psize = getpagesize(); local
208 addr = (startaddr & ~(psize-1)) - psize;
213 r = mprotect((char*)addr, length + startaddr - addr + psize, 7);
sys_linux.cpp 444 int psize = getpagesize(); local
446 addr = (startaddr & ~(psize-1)) - psize;
451 r = mprotect((char*)addr, length + startaddr - addr + psize, 7);
  /external/grub/stage2/
jfs.h 51 #ifdef PSIZE
52 #undef PSIZE
54 #define PSIZE 4096 /* page size (in byte) */
59 * PSIZE >= file system block size >= PBSIZE >= DISIZE
77 #define AITBL_OFF (SUPER1_OFF + PSIZE + (PSIZE << 1))
95 #define JFS_PATH_MAX PSIZE
  /external/webp/src/dec/
idec.c 277 const size_t psize = br->buf_end_ - br->buf_; local
280 assert(psize > 0);
281 assert(psize <= mem->part0_size_);
284 uint8_t* const part0_buf = (uint8_t*)malloc(psize);
288 memcpy(part0_buf, br->buf_, psize);
290 mem->start_ += psize;
292 br->buf_end_ = part0_buf + psize;

Completed in 1476 milliseconds

1 2 3 4 5