Home
last modified time | relevance | path

Searched refs:outIndex (Results 1 – 19 of 19) sorted by relevance

/external/perfetto/ui/src/tracks/chrome_slices/
Dcontroller.ts141 let outIndex = 0;
155 if (data.summarizedOffset[outIndex] === -1) {
156 data.summarizedOffset[outIndex] = summaryIndex;
158 data.summarizedSize[outIndex] = data.summarizedSize[outIndex] + 1;
170 const numSummarized = data.summarizedSize[outIndex]; constant
171 data.starts[outIndex] = fromNs(start);
172 data.ends[outIndex] = fromNs(start + dur);
173 data.titles[outIndex] =
175 data.depths[outIndex] = depth;
176 data.sliceIds[outIndex] = +cols[4].longValues![row];
[all …]
/external/perfetto/ui/src/tracks/thread_state/
Dcontroller.ts102 let outIndex = 0;
112 let breakdownMap = summary.summarisedStateBreakdowns.get(outIndex);
115 summary.summarisedStateBreakdowns.set(outIndex, breakdownMap);
131 const numStates = summary.summarisedStateBreakdowns.get(outIndex) ?
132 summary.summarisedStateBreakdowns.get(outIndex)!.entries.length :
134 summary.starts[outIndex] = fromNs(start);
135 summary.ends[outIndex] = fromNs(start + dur);
136 summary.state[outIndex] =
138 summary.cpu[outIndex] = +cols[2].longValues![row];
139 outIndex++;
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/
DCCMBlockCipher.java270 int outIndex = outOff; in processPacket() local
288 ctrCipher.processBlock(in, inIndex, output, outIndex); in processPacket()
289 outIndex += blockSize; in processPacket()
299 System.arraycopy(block, 0, output, outIndex, inLen + inOff - inIndex); in processPacket()
326 ctrCipher.processBlock(in, inIndex, output, outIndex); in processPacket()
327 outIndex += blockSize; in processPacket()
337 System.arraycopy(block, 0, output, outIndex, outputLen - (inIndex - inOff)); in processPacket()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DCCMBlockCipher.java268 int outIndex = outOff; in processPacket() local
286 ctrCipher.processBlock(in, inIndex, output, outIndex); in processPacket()
287 outIndex += blockSize; in processPacket()
297 System.arraycopy(block, 0, output, outIndex, inLen + inOff - inIndex); in processPacket()
324 ctrCipher.processBlock(in, inIndex, output, outIndex); in processPacket()
325 outIndex += blockSize; in processPacket()
335 System.arraycopy(block, 0, output, outIndex, outputLen - (inIndex - inOff)); in processPacket()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java730 final int outIndex = iBlock * out.blockColumns + jBlock; in getSubMatrix() local
731 final double[] outBlock = out.blocks[outIndex]; in getSubMatrix()
898 int outIndex = 0; in getRowMatrix() local
903 final int available = outBlock.length - outIndex; in getRowMatrix()
905 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, available); in getRowMatrix()
908 outIndex = jWidth - available; in getRowMatrix()
910 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, jWidth); in getRowMatrix()
911 outIndex += jWidth; in getRowMatrix()
990 int outIndex = 0; in getColumnMatrix() local
996 if (outIndex >= outBlock.length) { in getColumnMatrix()
[all …]
DBlockFieldMatrix.java705 final int outIndex = iBlock * out.blockColumns + jBlock; in getSubMatrix() local
706 final T[] outBlock = out.blocks[outIndex]; in getSubMatrix()
872 int outIndex = 0; in getRowMatrix() local
877 final int available = outBlock.length - outIndex; in getRowMatrix()
879 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, available); in getRowMatrix()
882 outIndex = jWidth - available; in getRowMatrix()
884 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, jWidth); in getRowMatrix()
885 outIndex += jWidth; in getRowMatrix()
964 int outIndex = 0; in getColumnMatrix() local
970 if (outIndex >= outBlock.length) { in getColumnMatrix()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DBindPair.java22 long outIndex; field in BindPair
26 return "BindPair binding input " + inIndex + " to output " + outIndex; in toString()
DFolder.java76 if (bindPairs[i].outIndex == index) { in findBindPairForOutStream()
DSevenZFile.java685 bindPairs[i].outIndex = readUint64(header); in readFolder()
/external/conscrypt/platform/src/main/java/org/conscrypt/
DCertBlacklistImpl.java250 int outIndex = 0; in toHex() local
253 out[outIndex++] = HEX_TABLE[value >> 4]; in toHex()
254 out[outIndex++] = HEX_TABLE[value & 0xf]; in toHex()
/external/conscrypt/repackaged/platform/src/main/java/com/android/org/conscrypt/
DCertBlacklistImpl.java254 int outIndex = 0; in toHex() local
257 out[outIndex++] = HEX_TABLE[value >> 4]; in toHex()
258 out[outIndex++] = HEX_TABLE[value & 0xf]; in toHex()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestReorderingMode.java408 private boolean assertRoundTrip(Bidi bidi, int tc, int outIndex, in assertRoundTrip() argument
472 if ((outIndex > -1) && in assertRoundTrip()
473 !checkMaps(bidi, outIndex, src, dest, descMode, in assertRoundTrip()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestReorderingMode.java411 private boolean assertRoundTrip(Bidi bidi, int tc, int outIndex, in assertRoundTrip() argument
475 if ((outIndex > -1) && in assertRoundTrip()
476 !checkMaps(bidi, outIndex, src, dest, descMode, in assertRoundTrip()
/external/lzma/CPP/7zip/Archive/7z/
D7zEncode.cpp608 UInt32 outIndex = _bindInfo.Coder_to_Stream[ci]; in EncoderConstr() local
609 int bond = _bindInfo.FindBond_for_PackStream(outIndex); in EncoderConstr()
616 int si = _bindInfo.FindStream_in_PackStreams(outIndex); in EncoderConstr()
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DHlsMediaPeriod.java597 int outIndex = 0;
602 selectedPlaylistUrls[outIndex] = variant.url;
603 selectedPlaylistFormats[outIndex] = variant.format;
604 selectedVariantIndices[outIndex++] = i;
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dclip.h899 Integer<SIMD_T>& outIndex, // output index.
946 ScatterComponent(pOutVerts, VERTEX_POSITION_SLOT, vActiveMask, outIndex, c, vOutPos);
959 ScatterComponent(pOutVerts, attribSlot, vActiveMask, outIndex, c, vOutAttrib);
973 ScatterComponent(pOutVerts, attribSlot, vActiveMask, outIndex, c, vOutAttrib);
986 ScatterComponent(pOutVerts, attribSlot, vActiveMask, outIndex, c, vOutAttrib);
/external/deqp/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessBufferAccessTests.cpp802 deInt32 outIndex; in BufferAccessInstance() member
828 indices.outIndex = RobustBufferAccessTest::s_testArraySize - 1; in BufferAccessInstance()
841 log << tcu::TestLog::Message << "outIndex = " << indices.outIndex << tcu::TestLog::EndMessage; in BufferAccessInstance()
/external/python/cpython2/Mac/Modules/menu/
D_Menumodule.c1807 MenuItemIndex outIndex; in MenuObj_GetIndMenuItemWithCommandID() local
1819 &outIndex); in MenuObj_GetIndMenuItemWithCommandID()
1823 outIndex); in MenuObj_GetIndMenuItemWithCommandID()
3170 MenuItemIndex outIndex; in Menu_GetIndMenuItemWithCommandID() local
3183 &outIndex); in Menu_GetIndMenuItemWithCommandID()
3187 outIndex); in Menu_GetIndMenuItemWithCommandID()
/external/icu/icu4c/source/test/cintltst/
Dcbiditst.c102 static UBool assertRoundTrip(UBiDi *pBiDi, int32_t tc, int32_t outIndex,
3948 assertRoundTrip(UBiDi *pBiDi, int32_t tc, int32_t outIndex, const char *srcChars, in assertRoundTrip() argument
4116 if (outIndex > -1 && !checkMaps(pBiDi, outIndex, srcChars, destChars, in assertRoundTrip()