HomeSort by relevance Sort by last modified time
    Searched refs:bArray (Results 1 - 20 of 20) sorted by null

  /external/tpm2/
Bits_fp.h 10 BOOL BitIsSet(unsigned int bitNum, // IN: number of the bit in 'bArray'
11 BYTE *bArray, // IN: array containing the bit
12 unsigned int arraySize // IN: size in bytes of 'bArray'
18 // This function will set the indicated bit in bArray.
20 void BitSet(unsigned int bitNum, // IN: number of the bit in 'bArray'
21 BYTE *bArray, // IN: array containing the bit
22 unsigned int arraySize // IN: size in bytes of 'bArray'
29 // This function will clear the indicated bit in bArray.
31 void BitClear(unsigned int bitNum, // IN: number of the bit in 'bArray'.
32 BYTE *bArray, // IN: array containing the bi
    [all...]
Bits.c 24 unsigned int bitNum, // IN: number of the bit in 'bArray'
25 BYTE *bArray, // IN: array containing the bit
26 unsigned int arraySize // IN: size in bytes of 'bArray'
30 return((bArray[bitNum >> 3] & (1 << (bitNum & 7))) != 0);
36 // This function will set the indicated bit in bArray.
40 unsigned int bitNum, // IN: number of the bit in 'bArray'
41 BYTE *bArray, // IN: array containing the bit
42 unsigned int arraySize // IN: size in bytes of 'bArray'
46 bArray[bitNum >> 3] |= (1 << (bitNum & 7));
52 // This function will clear the indicated bit in bArray
    [all...]
  /external/clang/test/CodeGenCXX/
alignment.cpp 181 void *bPointer; // puts bArray at offset 16
182 Array bArray;
238 AlignedArray result = b.bArray;
249 AlignedArray result = b->bArray;
261 AlignedArray result = b.bArray;
297 AlignedArray result = d.bArray;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestInputStreamTest.java 298 byte[] bArray = new byte[MY_MESSAGE_LEN];
302 dis.read(bArray, 0, bArray.length) == MY_MESSAGE_LEN);
303 // check that bArray has been filled properly
304 assertTrue("bArray", Arrays.equals(myMessage, bArray));
335 byte[] bArray = new byte[MY_MESSAGE_LEN];
340 dis.read(bArray, i*CHUNK_SIZE, CHUNK_SIZE) == CHUNK_SIZE);
342 // check that bArray has been filled properly
343 assertTrue("bArray", Arrays.equals(myMessage, bArray))
    [all...]
  /external/libese/apps/weaver/card/src/com/android/weaver/core/
CoreSlots.java 189 private static void arrayFill(byte[] bArray, short bOff, short bLen, byte bValue) {
191 bArray[(short) (bOff + i)] = bValue;
210 private static boolean throttle(byte[] bArray, short bOff, short failureCount) {
238 Util.setShort(bArray, bOff, highWord);
239 Util.setShort(bArray, (short) (bOff + 2), lowWord);
  /frameworks/base/core/jni/
android_util_StringBlock.cpp 35 jbyteArray bArray,
38 if (bArray == NULL) {
43 jsize bLen = env->GetArrayLength(bArray);
49 jbyte* b = env->GetByteArrayElements(bArray, NULL);
51 env->ReleaseByteArrayElements(bArray, b, 0);
android_util_XmlBlock.cpp 35 jbyteArray bArray,
38 if (bArray == NULL) {
43 jsize bLen = env->GetArrayLength(bArray);
49 jbyte* b = env->GetByteArrayElements(bArray, NULL);
52 env->ReleaseByteArrayElements(bArray, b, 0);
android_util_AssetManager.cpp 460 jlong assetHandle, jbyteArray bArray,
465 if (a == NULL || bArray == NULL) {
474 jsize bLen = env->GetArrayLength(bArray);
480 jbyte* b = env->GetByteArrayElements(bArray, NULL);
482 env->ReleaseByteArrayElements(bArray, b, 0);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 434 byte[] bArray = s.getBytes(encoding);
435 isInEncoding = inEncoding(ch, bArray);
474 byte[] bArray = s.getBytes(encoding);
475 isInEncoding = inEncoding(high,bArray);
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorCheckbox.java 57 final Button []bArray = new Button[icon.length];
61 bArray[i] = checkBox;
VectorDrawable01.java 61 final Button []bArray = new Button[icon.length];
82 bArray[i] = button;
  /external/libese/apps/weaver/card/src/com/android/weaver/
Weaver.java 273 private short getSlotId(byte[] bArray, short bOff) {
274 if (bArray[bOff] != 0 || bArray[(short) (bOff + 1)] != 0) {
277 return Util.getShort(bArray,(short) (bOff + 2));
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldAbstractPreferencesTest.java 543 byte[] bArray = new byte[]{1, 2, 3, 4, 5};
546 pref.putByteArray("Array", bArray);
550 assertEquals(bArray.length, array.length);
551 for(i = 0; i < bArray.length; i++) {
552 assertEquals(bArray[i], array[i]);
556 pref.putByteArray(null, bArray);
569 pref.putByteArray(new String(sb), bArray);
575 bArray = new byte[Preferences.MAX_VALUE_LENGTH * 3 / 4 + 1];
578 pref.putByteArray("Big array", bArray);
595 byte[] bArray = new byte[]{1, 2, 3, 4, 5}
    [all...]
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
Storage.java 108 public static void install(byte[] bArray, short bOffset, byte bLength) {
111 short aidLength = bArray[aidOffset++];
113 short privLength = bArray[privsOffset++];
116 short paramLength = bArray[paramsOffset++];
119 applet.register(bArray, aidOffset, (byte)aidLength);
122 applet.restore(bArray);
  /art/test/906-iterate-heap/src/art/
Test906.java 90 byte[] bArray = new byte[] { 1, 2, 3 };
91 setTag(bArray, 1);
92 System.out.println(iterateThroughHeapPrimitiveArray(getTag(bArray)));
93 System.out.println(getTag(bArray));
  /art/test/913-heaps/src/art/
Test913.java 124 final byte[] bArray = new byte[] { 1, 2, 3 };
125 setTag(bArray, 2);
147 Object b = bArray;
158 System.out.print(getTag(bArray));
  /prebuilts/tools/common/m2/repository/xalan/serializer/2.7.1/
serializer-2.7.1.jar 
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp     [all...]
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
xalan-2.7.1.jar 

Completed in 2278 milliseconds