Home
last modified time | relevance | path

Searched refs:offset1 (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/obex/javax/obex/
DPrivateOutputStream.java98 int offset1 = offset; in write() local
112 mArray.write(buffer, offset1, bufferLeft); in write()
113 offset1 += bufferLeft; in write()
118 mArray.write(buffer, offset1, remainLength); in write()
DPrivateInputStream.java118 int offset1 = offset; in read() local
122 System.arraycopy(mData, mIndex, b, offset1, currentDataLength); in read()
124 offset1 += currentDataLength; in read()
134 System.arraycopy(mData, mIndex, b, offset1, remainReadLength); in read()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dresidual.cpp29 int offset1 = y_position * orgPitch + x_position; in EncodeIntraPCM() local
43 pSrc = currInput->YCbCr[0] + offset1; in EncodeIntraPCM()
44 pDst = video->currPic->Sl + offset1; in EncodeIntraPCM()
77 pDst = video->currPic->Scb + ((offset1 + x_position) >> 2); in EncodeIntraPCM()
78 pSrc = currInput->YCbCr[1] + ((offset1 + x_position) >> 2); in EncodeIntraPCM()
111 pDst = video->currPic->Scr + ((offset1 + x_position) >> 2); in EncodeIntraPCM()
112 pSrc = currInput->YCbCr[2] + ((offset1 + x_position) >> 2); in EncodeIntraPCM()
/frameworks/base/keystore/java/android/security/keystore/
DArrayUtils.java44 public static byte[] concat(byte[] arr1, int offset1, int len1, byte[] arr2, int offset2, in concat() argument
49 return subarray(arr1, offset1, len1); in concat()
52 System.arraycopy(arr1, offset1, result, 0, len1); in concat()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DRadialTextsView.java240 float offset1 = numbersRadius; in calculateGridSizes() local
249 textGridHeights[0] = yCenter - offset1; in calculateGridSizes()
250 textGridWidths[0] = xCenter - offset1; in calculateGridSizes()
261 textGridHeights[6] = yCenter + offset1; in calculateGridSizes()
262 textGridWidths[6] = xCenter + offset1; in calculateGridSizes()