HomeSort by relevance Sort by last modified time
    Searched defs:outIndex (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/main/java/libcore/io/
Base64.java 67 int outIndex = 0;
107 out[outIndex++] = (byte) (quantum >> 16);
108 out[outIndex++] = (byte) (quantum >> 8);
109 out[outIndex++] = (byte) quantum;
117 out[outIndex++] = (byte) (quantum >> 16);
119 out[outIndex++] = (byte) (quantum >> 8);
123 byte[] result = new byte[outIndex];
124 System.arraycopy(out, 0, result, 0, outIndex);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Base64.java 67 int outIndex = 0;
106 out[outIndex++] = (byte) (quantum >> 16);
107 out[outIndex++] = (byte) (quantum >> 8);
108 out[outIndex++] = (byte) quantum;
116 out[outIndex++] = (byte) (quantum >> 16);
118 out[outIndex++] = (byte) (quantum >> 8);
122 byte[] result = new byte[outIndex];
123 System.arraycopy(out, 0, result, 0, outIndex);
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 38 private int outIndex = 0;
59 if (outIndex == outCount) {
61 if (outIndex == outCount) {
66 return outputBuffer[outIndex++];
76 outIndex = 0;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Base64InputStream.java 46 private int outIndex = 0;
70 if (outIndex == outCount) {
72 if (outIndex == outCount) {
77 return outputBuffer[outIndex++];
87 outIndex = 0;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_dpb.h 84 u32 outIndex;
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c     [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 568 int outIndex;
569 sp<Client> client = findClientUnsafe(remoteBinder, outIndex);
573 LOG1("removeClient: clear camera %d", outIndex);
574 mClient[outIndex].clear();
624 const wp<IBinder>& cameraClient, int& outIndex) {
645 outIndex = i;
650 outIndex = -1;
673 int outIndex;
674 client = findClientUnsafe(cameraClient, outIndex);
    [all...]
  /frameworks/base/services/input/
InputReader.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 261 milliseconds