/packages/apps/Gallery2/jni_jpegstream/src/ |
stream_wrapper.cpp | 25 mBytes(NULL), 62 mBytes = env->GetByteArrayElements(mByteArray, NULL); 63 if (mBytes == NULL || env->ExceptionCheck()){ 77 if (mBytes != NULL) { 78 mEnv->ReleaseByteArrayElements(mByteArray, mBytes, JNI_ABORT); 79 mBytes = NULL; 84 mBytes = NULL; 96 return mBytes;
|
outputstream_wrapper.cpp | 26 mEnv->ReleaseByteArrayElements(mByteArray, mBytes, JNI_COMMIT); 27 mBytes = NULL; 40 mBytes = mEnv->GetByteArrayElements(mByteArray, NULL); 41 if (mBytes == NULL || mEnv->ExceptionCheck()) {
|
inputstream_wrapper.cpp | 28 mEnv->ReleaseByteArrayElements(mByteArray, mBytes, JNI_COMMIT); 29 mBytes = NULL; 38 mBytes = mEnv->GetByteArrayElements(mByteArray, NULL); 39 if (mBytes == NULL || mEnv->ExceptionCheck()) { 60 mBytes[0] = (jbyte) 0xFF; 61 mBytes[1] = (jbyte) 0xD9;
|
stream_wrapper.h | 40 jbyte* mBytes;
|
/art/test/027-arithmetic/src/ |
Main.java | 24 final int[] mBytes = { 30 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; 31 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; 39 l = (long)mBytes[0 [all...] |
/dalvik/tests/027-arithmetic/src/ |
Main.java | 10 final int[] mBytes = { 16 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; 17 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; 25 l = (long)mBytes[0 [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerModPowTest.java | 37 byte mBytes[] = {1, 2, 3}; 43 BigInteger modulus = new BigInteger(mSign, mBytes); 64 byte mBytes[] = {-128, 2, 3, 4, 5}; 71 BigInteger modulus = new BigInteger(mSign, mBytes); 87 byte mBytes[] = {-128, 2, 3, 4, 5}; 94 BigInteger modulus = new BigInteger(mSign, mBytes); 132 byte mBytes[] = {1, 2, 3}; 136 BigInteger modulus = new BigInteger(mSign, mBytes); 149 byte mBytes[] = {-12, 1, 0, 0, 0, 23, 44, 55, 66}; 153 BigInteger modulus = new BigInteger(mSign, mBytes); [all...] |
/dalvik/tests/003-omnibus-opcodes/src/ |
IntMath.java | 11 final int[] mBytes = { 17 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; 18 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; 25 l = (long)mBytes[0 [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/media/ |
AudioFxDemo.java | 203 private byte[] mBytes; 215 mBytes = null; 223 mBytes = bytes; 231 if (mBytes == null) { 235 if (mPoints == null || mPoints.length < mBytes.length * 4) { 236 mPoints = new float[mBytes.length * 4]; 241 for (int i = 0; i < mBytes.length - 1; i++) { 242 mPoints[i * 4] = mRect.width() * i / (mBytes.length - 1); 244 + ((byte) (mBytes[i] + 128)) * (mRect.height() / 2) / 128; 245 mPoints[i * 4 + 2] = mRect.width() * (i + 1) / (mBytes.length - 1) [all...] |
/frameworks/base/core/java/android/speech/tts/ |
SynthesisPlaybackQueueItem.java | 228 mUnconsumedBytes -= entry.mBytes.length; 234 return entry.mBytes; 241 final byte[] mBytes; 244 mBytes = bytes;
|
/frameworks/base/core/java/com/android/internal/util/ |
FastPrintWriter.java | 49 final private ByteBuffer mBytes; 109 mBytes = ByteBuffer.allocate(mBufferLen); 178 mBytes = null; 221 mBytes = null; 332 if ((position = mBytes.position()) > 0) { 333 mBytes.flip(); 334 mOutputStream.write(mBytes.array(), 0, position); 335 mBytes.clear(); 344 CoderResult result = mCharset.encode(charBuffer, mBytes, true); 350 result = mCharset.encode(charBuffer, mBytes, true) [all...] |
FastXmlSerializer.java | 62 private ByteBuffer mBytes = ByteBuffer.allocate(BUFFER_LEN); 230 if ((position = mBytes.position()) > 0) { 231 mBytes.flip(); 232 mOutputStream.write(mBytes.array(), 0, position); 233 mBytes.clear(); 242 CoderResult result = mCharset.encode(charBuffer, mBytes, true); 248 result = mCharset.encode(charBuffer, mBytes, true);
|
/art/test/003-omnibus-opcodes/src/ |
IntMath.java | 25 final int[] mBytes = { 31 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; 32 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; 39 l = (long)mBytes[0 [all...] |
/art/test/107-int-math2/src/ |
Main.java | 204 final int[] mBytes = { 210 if (mBytes[0] != 0x11) return 20; 211 if (mBytes[1] != 0x22) return 21; 212 if (mBytes[2] != 0x33) return 22; 213 if (mBytes[3] != 0x44) return 23; 214 if (mBytes[4] != 0x88) return 24; 215 if (mBytes[5] != 0x99) return 25; 216 if (mBytes[6] != 0xaa) return 26; 217 if (mBytes[7] != 0xbb) return 27; 219 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24 [all...] |
/frameworks/compile/libbcc/lib/Support/ |
Disassembler.cpp | 45 const uint8_t *mBytes; 50 : mBytes(pBytes), mLength(pLength) { 59 *pByte = mBytes[pAddr];
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntry.java | [all...] |
/frameworks/base/services/java/com/android/server/ |
BackupManagerService.java | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.el_1.0.0.v201004212143.jar | |
/prebuilts/devtools/tools/lib/ |
lint-api.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/ |
lint-api-22.2.0.jar | |
/prebuilts/sdk/tools/lib/ |
lint_api.jar | |