Home
last modified time | relevance | path

Searched refs:nIndex (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
Dossource_posix.cpp44 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument
46 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue()
51 if (pthread_setspecific(nIndex, lpvValue) == 0) in OS_SetTLSValue()
58 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument
60 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex()
68 if (pthread_key_delete(nIndex) == 0) in OS_FreeTLSIndex()
Dossource_win.cpp40 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument
42 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue()
47 if (TlsSetValue(nIndex, lpvValue)) in OS_SetTLSValue()
54 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument
56 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex()
61 if (TlsFree(nIndex)) in OS_FreeTLSIndex()
Dosinclude.h60 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue);
61 bool OS_FreeTLSIndex(OS_TLSIndex nIndex);
63 inline void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue() argument
65 ASSERT(nIndex != OS_INVALID_TLS_INDEX); in OS_GetTLSValue()
67 return TlsGetValue(nIndex); in OS_GetTLSValue()
69 return pthread_getspecific(nIndex); in OS_GetTLSValue()
/third_party/vk-gl-cts/external/glslang/
Dosinclude.cpp43 bool OS_SetTLSValue (OS_TLSIndex nIndex, void* lpvValue) in OS_SetTLSValue() argument
45 deThreadLocal_set((deThreadLocal)nIndex, lpvValue); in OS_SetTLSValue()
49 bool OS_FreeTLSIndex (OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument
51 deThreadLocal_destroy((deThreadLocal)nIndex); in OS_FreeTLSIndex()
55 void* OS_GetTLSValue (OS_TLSIndex nIndex) in OS_GetTLSValue() argument
57 return deThreadLocal_get((deThreadLocal)nIndex); in OS_GetTLSValue()
/third_party/glslang/
Dosinclude.cpp43 bool OS_SetTLSValue (OS_TLSIndex nIndex, void* lpvValue) in OS_SetTLSValue() argument
45 deThreadLocal_set((deThreadLocal)nIndex, lpvValue); in OS_SetTLSValue()
49 bool OS_FreeTLSIndex (OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument
51 deThreadLocal_destroy((deThreadLocal)nIndex); in OS_FreeTLSIndex()
55 void* OS_GetTLSValue (OS_TLSIndex nIndex) in OS_GetTLSValue() argument
57 return deThreadLocal_get((deThreadLocal)nIndex); in OS_GetTLSValue()
/third_party/openmax/api/1.1.2/
DOMX_Component.h367 OMX_IN OMX_INDEXTYPE nIndex,
376 OMX_IN OMX_INDEXTYPE nIndex,
385 OMX_IN OMX_INDEXTYPE nIndex,
570 OMX_IN OMX_U32 nIndex);
DOMX_CoreExt.h64 OMX_INDEXTYPE nIndex; /**< the index the callback is requested for */ member
DOMX_Audio.h123 …OMX_U32 nIndex; /**< Indicates the enumeration index for the format from 0x0 to N-… member
985 OMX_U32 nIndex; /**< Index of Meta Event */ member
1000 OMX_U32 nIndex; /**< Index of Meta Event */ member
DOMX_Other.h328 OMX_U32 nIndex; /**< Indicates the enumeration index for the format from 0x0 to N-1 */ member
DOMX_Image.h144 OMX_U32 nIndex; member
DOMX_Core.h1247 OMX_IN OMX_U32 nIndex);
DOMX_Video.h159 OMX_U32 nIndex; member
/third_party/openh264/test/api/
DBaseThreadDecoderTest.cpp9 int nIndex = curBit / 8; in readBit() local
13 return (pBufPtr[nIndex] >> (8 - nOffset)) & 0x01; in readBit()
/third_party/openh264/codec/console/dec/src/
Dh264dec.cpp72 int nIndex = curBit / 8; in readBit() local
76 return (pBufPtr[nIndex] >> (8 - nOffset)) & 0x01; in readBit()
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
Dvid_enc.c457 if (format->nIndex >= 1) in vid_enc_GetParameter()
/third_party/ffmpeg/libavcodec/
Domx.c452 video_port_format.nIndex = i; in omx_component_init()
/third_party/sqlite/src/
Dsqlite3.c179348 int nIndex; /* Size of aIndex[] */
180462 int nIndex = 1; /* Number of entries in array */
180466 nIndex++;
180468 if( *p==',' ) nIndex++;
180472 aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex);
180478 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
180482 for(i=1; i<nIndex; i++){
180487 nIndex--;
180496 *pnIndex = nIndex;
180624 int nIndex = 0; /* Size of aIndex[] array */
[all …]
/third_party/typescript/src/compiler/
Dutilities.ts7280 const nIndex = stringValue.length - 1; constant
7286 return stringValue.slice(nonZeroStart, nIndex) || "0";
/third_party/typescript/lib/
Dtsc.js16997 var nIndex = stringValue.length - 1;
17002 return stringValue.slice(nonZeroStart, nIndex) || "0";
DtypingsInstaller.js21319 var nIndex = stringValue.length - 1;
21325 return stringValue.slice(nonZeroStart, nIndex) || "0";