Home
last modified time | relevance | path

Searched refs:pArray (Results 1 – 5 of 5) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstcudaloader.c64 CUresult (CUDAAPI * CuGraphicsSubResourceGetMappedArray) (CUarray * pArray,
299 CuGraphicsSubResourceGetMappedArray (CUarray * pArray, in CuGraphicsSubResourceGetMappedArray() argument
304 return gst_cuda_vtable.CuGraphicsSubResourceGetMappedArray (pArray, resource, in CuGraphicsSubResourceGetMappedArray()
Dgstcudaloader.h63 CUresult CUDAAPI CuGraphicsSubResourceGetMappedArray (CUarray * pArray,
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11screencapture.cpp90 explicit MyFLOAT3(const float *pArray) : x(pArray[0]), y(pArray[1]), z(pArray[2]) {} in MyFLOAT3()
107 explicit MyFLOAT2(const float *pArray) : x(pArray[0]), y(pArray[1]) {} in MyFLOAT2()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java2855 byte[] pArray, bytes; in encodeLoop()
3121 pArray = bytes; in encodeLoop()
3123 … value = ((pArray[pArrayIndex] & UConverterConstants.UNSIGNED_BYTE_MASK) << 16) in encodeLoop()
3124 … | ((pArray[pArrayIndex + 1] & UConverterConstants.UNSIGNED_BYTE_MASK) << 8) in encodeLoop()
3125 … | (pArray[pArrayIndex + 2] & UConverterConstants.UNSIGNED_BYTE_MASK); in encodeLoop()
3165 pArray = bytes; in encodeLoop()
3167 … value = ((pArray[pArrayIndex] & UConverterConstants.UNSIGNED_BYTE_MASK) << 16) in encodeLoop()
3168 … | ((pArray[pArrayIndex + 1] & UConverterConstants.UNSIGNED_BYTE_MASK) << 8) in encodeLoop()
3169 … | (pArray[pArrayIndex + 2] & UConverterConstants.UNSIGNED_BYTE_MASK); in encodeLoop()
/third_party/astc-encoder/Source/
Dtinyexr.h4798 mz_zip_array *pArray) { in mz_zip_array_clear() argument
4799 pZip->m_pFree(pZip->m_pAlloc_opaque, pArray->m_p); in mz_zip_array_clear()
4800 memset(pArray, 0, sizeof(mz_zip_array)); in mz_zip_array_clear()
4804 mz_zip_array *pArray, in mz_zip_array_ensure_capacity() argument
4809 MZ_ASSERT(pArray->m_element_size); in mz_zip_array_ensure_capacity()
4810 if (pArray->m_capacity >= min_new_capacity) return MZ_TRUE; in mz_zip_array_ensure_capacity()
4812 new_capacity = MZ_MAX(1, pArray->m_capacity); in mz_zip_array_ensure_capacity()
4815 if (NULL == (pNew_p = pZip->m_pRealloc(pZip->m_pAlloc_opaque, pArray->m_p, in mz_zip_array_ensure_capacity()
4816 pArray->m_element_size, new_capacity))) in mz_zip_array_ensure_capacity()
4818 pArray->m_p = pNew_p; in mz_zip_array_ensure_capacity()
[all …]