Searched refs:aOffset (Results 1 – 9 of 9) sorted by relevance
/third_party/flatbuffers/tests/MyGame/Example/ |
D | ArrayTable.java | 23 …public static void addA(FlatBufferBuilder builder, int aOffset) { builder.addStruct(0, aOffset, 0)… in addA() argument
|
D | ArrayTable.cs | 26 …ufferBuilder builder, Offset<MyGame.Example.ArrayStruct> aOffset) { builder.AddStruct(0, aOffset.V… in AddA()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgBinaryOps.cpp | 557 T aOffset = GetRandom()(random, T(-8), T(8)); in operator ()() local 559 aMin = dstMin+aOffset; in operator ()() 562 bMin = -aOffset; in operator ()() 563 bMax = -aOffset+(rangeLen-subRangeLen); in operator ()() 607 T aOffset = GetRandom()(random, T(-8), T(8)); in operator ()() local 609 aMin = dstMin+aOffset; in operator ()() 612 bMin = aOffset-(rangeLen-subRangeLen); in operator ()() 613 bMax = aOffset; in operator ()()
|
/third_party/flutter/skia/tests/ |
D | OpChainTest.cpp | 56 int64_t aOffset = a * (kNumOps - 1); in combinable_index() local 59 return aOffset + bIdxInA; in combinable_index()
|
/third_party/glslang/Test/ |
D | atomic_uint.frag | 42 layout(binding=0, offset=32) uniform atomic_uint aOffset;
|
/third_party/glslang/Test/baseResults/ |
D | atomic_uint.frag.out | 70 0:? 'aOffset' (layout( binding=0 offset=32) uniform atomic_uint) 101 0:? 'aOffset' (layout( binding=0 offset=32) uniform atomic_uint)
|
/third_party/skia/tests/ |
D | OpChainTest.cpp | 59 int64_t aOffset = a * (kNumOps - 1); in combinable_index() local 62 return aOffset + bIdxInA; in combinable_index()
|
/third_party/sqlite/src/ |
D | sqlite3.c | 21891 u32 *aOffset; /* Pointer to aType[nField] */ 87299 pCx->aOffset = &pCx->aType[nField]; 89743 u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */ 89771 aOffset = pC->aOffset; 89805 pC->iHdrOffset = getVarint32(pC->aRow, aOffset[0]); 89809 if( pC->szRow<aOffset[0] ){ /*OPTIMIZATION-IF-FALSE*/ 89826 if( aOffset[0] > 98307 || aOffset[0] > pC->payloadSize ){ 89845 testcase( aOffset[0]==0 ); 89857 if( pC->iHdrOffset<aOffset[0] ){ 89861 rc = sqlite3VdbeMemFromBtreeZeroOffset(pC->uc.pCursor,aOffset[0],&sMem); [all …]
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 98710 pCx->aOffset = &pCx->aType[nField]; 99181 u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */ 99207 aOffset = pC->aOffset; 99208 + assert( aOffset==pC->aType+pC->nField ); 99260 - pC->iHdrOffset = getVarint32(pC->aRow, aOffset[0]); 99261 + if( (aOffset[0] = pC->aRow[0])<0x80 ){ 99264 + pC->iHdrOffset = sqlite3GetVarint32(pC->aRow, aOffset); 99269 if( pC->szRow<aOffset[0] ){ /*OPTIMIZATION-IF-FALSE*/ 99273 testcase( aOffset[0]==0 ); 99314 rc = sqlite3VdbeMemFromBtree(pC->uc.pCursor, aOffset[p2], len, pDest); [all …]
|