HomeSort by relevance Sort by last modified time
    Searched full:outoffset (Results 1 - 25 of 25) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 243 * @param outOffset {@code >= 0;} first output offset to print
250 int outOffset, int bpl, int addressLength) {
260 if (outOffset < 0) {
261 throw new IllegalArgumentException("outOffset < 0");
276 case 2: astr = Hex.u1(outOffset); break;
277 case 4: astr = Hex.u2(outOffset); break;
278 case 6: astr = Hex.u3(outOffset); break;
279 default: astr = Hex.u4(outOffset); break;
287 outOffset++;
  /dalvik/dx/src/com/android/dx/util/
Hex.java 243 * @param outOffset {@code >= 0;} first output offset to print
250 int outOffset, int bpl, int addressLength) {
260 if (outOffset < 0) {
261 throw new IllegalArgumentException("outOffset < 0");
276 case 2: astr = Hex.u1(outOffset); break;
277 case 4: astr = Hex.u2(outOffset); break;
278 case 6: astr = Hex.u3(outOffset); break;
279 default: astr = Hex.u4(outOffset); break;
287 outOffset++;
  /external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java 243 * @param outOffset {@code >= 0;} first output offset to print
250 int outOffset, int bpl, int addressLength) {
260 if (outOffset < 0) {
261 throw new IllegalArgumentException("outOffset < 0");
276 case 2: astr = Hex.u1(outOffset); break;
277 case 4: astr = Hex.u2(outOffset); break;
278 case 6: astr = Hex.u3(outOffset); break;
279 default: astr = Hex.u4(outOffset); break;
287 outOffset++;
  /external/smali/util/src/main/java/org/jf/util/
Hex.java 255 * @param outOffset &gt;= 0; first output offset to print
262 int outOffset, int bpl, int addressLength) {
272 if (outOffset < 0) {
273 throw new IllegalArgumentException("outOffset < 0");
288 case 2: astr = Hex.u1(outOffset); break;
289 case 4: astr = Hex.u2(outOffset); break;
290 case 6: astr = Hex.u3(outOffset); break;
291 default: astr = Hex.u4(outOffset); break;
299 outOffset++;
  /libcore/luni/src/main/java/javax/crypto/
Mac.java 437 * output} buffer at offset {@code outOffset}.
445 * @param outOffset
455 public final void doFinal(byte[] output, int outOffset)
463 if ((outOffset < 0) || (outOffset >= output.length)) {
464 throw new ShortBufferException("Incorrect outOffset: " + outOffset);
468 if (t > (output.length - outOffset)) {
472 System.arraycopy(result, 0, output, outOffset, result.length);
  /external/chromium_org/third_party/icu/source/tools/icuswap/
icuswap.cpp 322 uint32_t nameOffset, inOffset, outOffset, length;
557 table[i].outOffset=table[i].inOffset;
587 * Now the outOffset values are in order.
590 /* assign outOffset values */
592 table[i].outOffset=offset;
600 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset);
606 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
610 outBytes+table[i].outOffset, pErrorCode);
627 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
  /external/icu/icu4c/source/tools/icuswap/
icuswap.cpp 322 uint32_t nameOffset, inOffset, outOffset, length;
557 table[i].outOffset=table[i].inOffset;
587 * Now the outOffset values are in order.
590 /* assign outOffset values */
592 table[i].outOffset=offset;
600 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset);
606 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
610 outBytes+table[i].outOffset, pErrorCode);
627 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 475 private static void yuvToRgb(byte[] yuvData, int outOffset, /*out*/byte[] rgbOut) {
488 rgbOut[outOffset] = (byte) Math.max(0, Math.min(COLOR_MAX, r));
489 rgbOut[outOffset + 1] = (byte) Math.max(0, Math.min(COLOR_MAX, g));
490 rgbOut[outOffset + 2] = (byte) Math.max(0, Math.min(COLOR_MAX, b));
496 private static void colorToRgb(int color, int outOffset, /*out*/byte[] rgbOut) {
497 rgbOut[outOffset] = (byte) Color.red(color);
498 rgbOut[outOffset + 1] = (byte) Color.green(color);
499 rgbOut[outOffset + 2] = (byte) Color.blue(color);
  /external/chromium_org/third_party/icu/source/test/intltest/
tzfmttst.cpp 214 int32_t outOffset = outRaw + outDst;
215 if (inOffset != outOffset) {
219 + ", inOffset=" + inOffset + ", outOffset=" + outOffset);
  /frameworks/base/media/java/android/media/
ResampleInputStream.java 148 byte[] out, int outOffset, int npoints);
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 407 llvm::Value *OutOffset = Builder.CreateSub(IV, Arg_x1);
408 OutOffset = Builder.CreateMul(OutOffset, OutStep);
409 OutPtr = Builder.CreateGEP(OutBasePtr, OutOffset);
653 llvm::Value *OutOffset = Builder.CreateSub(IV, Arg_x1);
655 OutOffset = Builder.CreateMul(OutOffset, OutStep);
656 OutPtr = Builder.CreateGEP(OutBasePtr, OutOffset);
  /external/icu/icu4c/source/test/intltest/
tzfmttst.cpp 305 int32_t outOffset = outRaw + outDst;
306 int32_t diff = outOffset - inOffset;
314 + ", inOffset=" + inOffset + ", outOffset=" + outOffset);
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 343 * Test for <code>doFinal(byte[] output, int outOffset)</code> method
345 * throws ShotBufferException when outOffset is negative or
346 * outOffset >= output.length or when given buffer is small
392 * Test for <code>doFinal(byte[] output, int outOffset)</code> and
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 353 * Test for <code>doFinal(byte[] output, int outOffset)</code> method
355 * throws ShotBufferException when outOffset is negative or
356 * outOffset >= output.length or when given buffer is small
400 * Test for <code>doFinal(byte[] output, int outOffset)</code> and
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderAVC.cpp 513 OMX_U32 outoffset = outBuf.offset; local
558 buffers[OUTPORT_INDEX]->nOffset = outoffset;
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java 267 byte[] out, int outOffset, long publicKeyRef, long privateKeyRef);
332 public static native int EVP_CipherUpdate(long ctx, byte[] out, int outOffset, byte[] in,
335 public static native int EVP_CipherFinal_ex(long ctx, byte[] out, int outOffset)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 707 int outOffset = output.offset;
725 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32);
766 outOffset += numComponents*sizeof(deUint32);
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 1565 milliseconds