HomeSort by relevance Sort by last modified time
    Searched refs:outOffset (Results 1 - 25 of 65) sorted by null

1 2 3

  /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++;
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 518 private static void yuvToRgb(byte[] yuvData, int outOffset, /*out*/byte[] rgbOut) {
531 rgbOut[outOffset] = (byte) Math.max(0, Math.min(COLOR_MAX, r));
532 rgbOut[outOffset + 1] = (byte) Math.max(0, Math.min(COLOR_MAX, g));
533 rgbOut[outOffset + 2] = (byte) Math.max(0, Math.min(COLOR_MAX, b));
539 private static void colorToRgb(int color, int outOffset, /*out*/byte[] rgbOut) {
540 rgbOut[outOffset] = (byte) Color.red(color);
541 rgbOut[outOffset + 1] = (byte) Color.green(color);
542 rgbOut[outOffset + 2] = (byte) Color.blue(color);
  /frameworks/base/media/java/android/media/
ResampleInputStream.java 148 byte[] out, int outOffset, int npoints);
  /libcore/ojluni/src/main/java/javax/crypto/
Mac.java 600 * <code>outOffset</code> inclusive.
603 * @param outOffset the offset in <code>output</code> where the MAC is
611 public final void doFinal(byte[] output, int outOffset)
619 if (output == null || output.length-outOffset < macLen) {
624 System.arraycopy(mac, 0, output, outOffset, macLen);
  /external/icu/icu4c/source/tools/icuswap/
icuswap.cpp 321 uint32_t nameOffset, inOffset, outOffset, length;
556 table[i].outOffset=table[i].inOffset;
586 * Now the outOffset values are in order.
589 /* assign outOffset values */
591 table[i].outOffset=offset;
599 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset);
605 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
609 outBytes+table[i].outOffset, pErrorCode);
626 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
  /external/skia/src/gpu/
GrTextureParamsAdjuster.cpp 160 SkIPoint* outOffset) {
173 if (outOffset) {
175 outOffset->set(contentArea->fLeft, contentArea->fRight);
177 outOffset->set(0, 0);
184 if (copy && outOffset) {
185 outOffset->set(0, 0);
GrTextureParamsAdjuster.h 127 outOffset will be the top-left corner of the subset if a copy is not made. Otherwise,
128 the copy will be tight to the contents and outOffset will be (0, 0). If the copy's size
130 GrTexture* refTextureSafeForParams(const GrTextureParams&, SkIPoint* outOffset);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreSignatureSpiBase.java 310 protected final int engineSign(byte[] out, int outOffset, int outLen)
312 return super.engineSign(out, outOffset, outLen);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TimeZoneFormatTest.java 255 int outOffset = outOffsets[0] + outOffsets[1];
256 int diff = outOffset - inOffset;
264 + ", inOffset=" + inOffset + ", outOffset=" + outOffset);
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzfmttst.cpp 306 int32_t outOffset = outRaw + outDst;
307 int32_t diff = outOffset - inOffset;
315 + ", inOffset=" + inOffset + ", outOffset=" + outOffset);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 251 int outOffset = outOffsets[0] + outOffsets[1];
252 int diff = outOffset - inOffset;
260 + ", inOffset=" + inOffset + ", outOffset=" + outOffset);
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java 209 public static native int ECDH_compute_key(byte[] out, int outOffset,
286 int outOffset, byte[] in, int inOffset, int inLength);
289 int outOffset) throws BadPaddingException, IllegalBlockSizeException;
325 int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, byte[] ad)
329 int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, byte[] ad)
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 720 int outOffset = output.offset;
738 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32);
779 outOffset += numComponents*(int)sizeof(deUint32);
    [all...]
  /prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar 
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/
dexmaker-1.2.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 

Completed in 877 milliseconds

1 2 3