Searched refs:ndx (Results 1 - 25 of 339) sorted by path

1234567891011>>

/external/chromium_org/gpu/command_buffer/
H A Dbuild_gles2_cmd_buffer.py3411 for ndx,item in enumerate(states):
3415 code.append("%s %s" % (args[ndx].name, range_check['check']))
3423 code.append("base::IsNaN(%s)" % args[ndx].name)
3429 (func.name, args[ndx].name))
3433 for ndx,item in enumerate(states):
3434 code.append("state_.%s != %s" % (item['name'], args[ndx].name))
3436 for ndx,item in enumerate(states):
3437 file.Write(" state_.%s = %s;\n" % (item['name'], args[ndx].name))
3441 for ndx,item in enumerate(states):
3444 (CachedStateName(item), args[ndx]
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dclient_test_helper.cc71 int32 ndx = *id - kTransferBufferBaseId; local
74 transfer_buffer_buffers_[ndx] =
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsnce.c374 PRUint32 ndx = sharedCache->nextCertCacheEntry; local
377 cache->certCacheData[ndx] = cce;
380 sce->u.ssl3.certIndex = ndx;
384 (ndx + 1) % cache->numCertCacheEntries;
411 PRUint32 ndx; local
430 ndx = Get32BitNameHash(name);
436 ndx %= cache->numSrvNameCacheEntries;
438 cache->srvNameCacheData[ndx] = snce;
440 sce->u.ssl3.srvNameIndex = ndx;
695 PRUint32 ndx local
912 PRUint32 ndx = set * SID_CACHE_ENTRIES_PER_SET + next; local
1782 PRUint32 ndx = (exchKeyType * SSL_NUM_WRAP_MECHS) + symWrapMechIndex; local
2102 PRUint32 ndx; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTimeRanges.cpp190 for (unsigned ndx = 0; ndx < count; ndx++) {
191 double startTime = start(ndx, IGNORE_EXCEPTION);
192 double endTime = end(ndx, IGNORE_EXCEPTION);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dmfqe.c247 static int ndx[4][4] = local
259 map[i] &= (mode_info_context->bmi[ndx[i][j]].mv.as_mv.row <= 2 &&
260 mode_info_context->bmi[ndx[i][j]].mv.as_mv.col <= 2);
/external/chromium_org/third_party/skia/gm/
H A Dtechtalk1.cpp100 uint16_t* ndx = indices; local
102 *ndx++ = i;
103 *ndx++ = i + count;
105 *ndx++ = 0;
107 show_mesh(canvas, pts0, indices, ndx - indices);
/external/deqp/execserver/tools/
H A DxsTest.cpp987 for (int ndx = 0; ndx < (int)(dataSize/sizeof(int)); ndx++)
988 ((deUint32*)data)[ndx] = deRandom_getUint32(&rnd);
/external/deqp/executor/tools/
H A DxeExtractSampleLists.cpp52 for (int ndx = 0; ndx < sampleList.sampleInfo.valueInfos.getNumItems(); ndx++)
54 if (ndx != 0)
56 out << static_cast<const xe::ri::ValueInfo&>(sampleList.sampleInfo.valueInfos.getItem(ndx)).name;
H A DxeExtractValues.cpp97 const CaseValues& operator[] (size_t ndx) const { return *m_caseValues[ndx]; }
106 for (int ndx = 0; ndx < items.getNumItems(); ndx++)
108 const xe::ri::Item& item = items.getItem(ndx);
H A DxeTestLogCompare.cpp240 for (int ndx = 0; ndx < (int)batchResults.size(); ndx++)
242 const ShortBatchResult& batchResult = batchResults[ndx];
246 headers[ndx] = batchResult.resultHeaders[resultPos->second];
249 headers[ndx].casePath = casePath;
250 headers[ndx].caseType = xe::TESTCASETYPE_SELF_VALIDATE;
251 headers[ndx].statusCode = xe::TESTSTATUSCODE_LAST;
279 for (int ndx = 0; ndx < (in
[all...]
/external/deqp/executor/
H A DxeBatchExecutor.cpp316 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
318 const TestNode* child = group->getChild(ndx);
H A DxeBatchResult.hpp112 ConstTestCaseResultPtr getTestCaseResult (int ndx) const { return ConstTestCaseResultPtr(m_testCaseResults[ndx]); }
113 TestCaseResultPtr getTestCaseResult (int ndx) { return m_testCaseResults[ndx]; } argument
H A DxeContainerFormatParser.cpp113 for (int ndx = 0; ndx < numBytes; ndx++)
114 dst[ndx] = m_buf.peekBack(offset+ndx);
212 int ndx = 0; local
216 int bufChar = (offset+ndx < m_elementLen) ? getChar(offset+ndx) : 0;
218 int elemChar = s_elements[elemNdx].name[ndx];
229 ndx
[all...]
H A DxeTestCase.cpp260 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
262 TestNode* node = group->getChild(ndx);
297 for (int ndx = 0; ndx < (int)components.size()-1; ndx++)
301 curGroupPath += components[ndx];
306 TestGroup* newGroup = curGroup->createGroup(components[ndx].c_str(), "" /* description */);
330 for (int ndx
[all...]
H A DxeTestCase.hpp94 TestNode* getChild (int ndx) { return m_children[ndx]; } argument
95 const TestNode* getChild (int ndx) const { return m_children[ndx]; }
H A DxeTestCaseListParser.cpp48 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_caseTypeMap); ndx++)
50 if (deStringEqual(caseType, s_caseTypeMap[ndx].name))
51 return s_caseTypeMap[ndx].caseType;
H A DxeTestCaseResult.hpp92 const Item& getItem (int ndx) const { return *m_items[ndx]; }
93 Item& getItem (int ndx) { return *m_items[ndx]; } argument
H A DxeTestLogWriter.cpp117 for (int ndx = 0; ndx < result.getNumTestCaseResults(); ndx++)
119 ConstTestCaseResultPtr caseData = result.getTestCaseResult(ndx);
285 for (int ndx = 0; ndx < imageSet.images.getNumItems(); ndx++)
286 writeResultItem(imageSet.images.getItem(ndx), dst);
327 for (int ndx = 0; ndx < progra
[all...]
H A DxeTestResultParser.cpp181 for (int ndx = 0; ndx < numEntries; ndx++)
182 printf("0x%08x\t%s\n", deStringHash(entries[ndx].name), entries[ndx].name);
206 for (int ndx = 0; ndx < numEntries; ndx++)
208 if (entries[ndx].hash == hash && deStringEqual(entries[ndx]
[all...]
H A DxeXMLParser.cpp342 for (int ndx = 0; ndx < m_curTokenLen-2; ndx++)
343 dst[ndx] = m_buf.peekBack(ndx+1);
548 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_entities); ndx++)
550 if (entity == s_entities[ndx].name)
551 return s_entities[ndx]
[all...]
H A DxeXMLParser.hpp207 for (int ndx = 0; ndx < m_curTokenLen; ndx++)
208 dst[ndx] = m_buf.peekBack(ndx);
218 for (int ndx = 0; ndx < m_curTokenLen; ndx++)
219 dst[oldLen+ndx] = m_buf.peekBack(ndx);
[all...]
/external/deqp/framework/common/
H A DtcuCommandLine.cpp271 for (int ndx = 0; ndx < (int)m_children.size(); ++ndx)
273 if (m_children[ndx]->getName() == name)
274 return ndx;
286 const int ndx = findChildNdx(name); local
287 return ndx == NOT_FOUND ? DE_NULL : m_children[ndx];
292 const int ndx = findChildNdx(name); local
293 return ndx
298 int ndx = 0; local
[all...]
H A DtcuCompressedTexture.cpp1120 static inline deUint32 getBit (deUint32 src, int ndx) argument
1122 DE_ASSERT(de::inBounds(ndx, 0, 32));
1123 return (src >> ndx) & 1;
1133 static inline bool isBitSet (deUint32 src, int ndx) argument
1135 return getBit(src, ndx) != 0;
1195 deUint32 getBit (int ndx) const
1197 DE_ASSERT(de::inBounds(ndx, 0, 128));
1198 return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1;
1226 bool isBitSet (int ndx) cons
[all...]
H A DtcuFunctionLibrary.cpp91 for (int ndx = 0; ndx < m_numLibraries; ndx++)
93 const deFunctionPtr ptr = m_libraries[ndx].getFunction(name);

Completed in 496 milliseconds

1234567891011>>