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/sqlite/src/
Dsqlite3.c121901 void *pArray, /* Array of objects. Might be reallocated */
121910 void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry);
121913 return pArray;
121915 pArray = pNew;
121917 z = (char*)pArray;
121920 return pArray;