Home
last modified time | relevance | path

Searched refs:ba (Results 1 – 13 of 13) sorted by relevance

/cts/tests/tests/bluetooth/src/android/bluetooth/cts/
DBluetoothQualityReportTest.java895 ByteBuffer ba; in getByteArray() local
900 ba = ByteBuffer.allocate(mBqrCommonSize); in getByteArray()
903 ba = ByteBuffer.allocate(mBqrCommonSize + mBqrVsLstoSize); in getByteArray()
906 ba = ByteBuffer.allocate(mBqrCommonSize + mBqrVsA2dpChoppySize); in getByteArray()
909 ba = ByteBuffer.allocate(mBqrCommonSize + mBqrVsScoChoppySize); in getByteArray()
912 ba = ByteBuffer.allocate(mBqrCommonSize + mBqrConnectFailSize); in getByteArray()
915 ba = ByteBuffer.allocate(mBqrCommonSize); in getByteArray()
919 ba.order(ByteOrder.LITTLE_ENDIAN); in getByteArray()
921 ba.put(mQualityReportId); in getByteArray()
922 ba.put(mPacketType); in getByteArray()
[all …]
/cts/tools/cfassembler/src/dxconvext/
DClassFileParser.java153 ByteArray ba = bytes.slice(offset, bytes.size()); in processFileBytes()
175 ByteArray ba = bytes.slice(offset, offset + len); in processFileBytes()
176 check(ba); in processFileBytes()
177 out("// " + dumpReadableString(ba)); in processFileBytes()
178 out(" " + dumpBytes(ba)); in processFileBytes()
187 private void check(ByteArray ba) { in processFileBytes()
188 int len = ba.size(); in processFileBytes()
191 int b = ba.getByte(i); in processFileBytes()
200 private String dumpBytes(ByteArray ba) { in processFileBytes()
202 for (int i = 0; i < ba.size(); i++) { in processFileBytes()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Darray_init.rscript11 bool ba[3] = {true, false};
49 _RS_ASSERT(ba[0] == true);
50 _RS_ASSERT(ba[1] == false);
51 _RS_ASSERT(ba[2] == false);
DComputeTest.java370 boolean[] ba = s.get_ba(); in checkInit()
371 assertTrue(ba[0] == true); in checkInit()
372 assertTrue(ba[1] == false); in checkInit()
373 assertTrue(ba[2] == false); in checkInit()
374 assertTrue(ba.length == 3); in checkInit()
/cts/tests/location/location_gnss/src/android/location/cts/gnss/asn1/base/
DAsn1Tag.java179 private static byte[] prependZeroByteIfHighBitSet(byte[] ba) { in prependZeroByteIfHighBitSet() argument
180 if ((ba[0] & 0x80) != 0) { in prependZeroByteIfHighBitSet()
181 byte[] newba = new byte[ba.length + 1]; in prependZeroByteIfHighBitSet()
182 System.arraycopy(ba, 0, newba, 1, ba.length); in prependZeroByteIfHighBitSet()
184 ba = newba; in prependZeroByteIfHighBitSet()
186 return ba; in prependZeroByteIfHighBitSet()
/cts/tests/tests/security/res/raw/
Dopenssl_heartbleed_test_cert.pem57 65:c1:31:ba:a9:09:e8:b8:8d:a2:4b:99:40:f2:98:
Ddrm_uaf.dm251 …�yz�`6��B�:��V}`<��9�� h�$m��w�S&Q�la wN���<�,{�J���z��?"[�S?��9ba�:�<����._ ���Y�[…
Dcve_2018_13925.ts4530 ���Ij�@3f���И���`^<�%��N s�.!��G�1�/� �DȆ�4�C �:��ba� �S�~D@BW �J�i �I
9814 �S�os�e��F� �[�o^4:,1֩��%I�Ϟ,��I�Ejh75��}�Y�7�uB�&O*jl�E�eS�ba�␗���AIR]�P��l�'��f^����t…
10616 …�OL�(r��U ���5P�0��!މaG�1FTRHa�-���w �$���);%��]��D��dU���A�1rdz+����ba� �%�d`�?��(�!��Ih…
Dcve_2019_2244.ts4532 ���Ij�@3f���И���`^<�%��N s�.!��G�1�/� �DȆ�4�C �:��ba� �S�~D@BW �J�i �I
9820 �S�os�e��F� �[�o^4:,1֩��%I�Ϟ,��I�Ejh75��}�Y�7�uB�&O*jl�E�eS�ba�␗���AIR]�P��l�'��f^����t…
10622 …�OL�(r��U ���5P�0��!މaG�1FTRHa�-���w �$���);%��]��D��dU���A�1rdz+����ba� �%�d`�?��(�!��Ih…
Dcve_2019_2245.ts9714 �S�os�e��F� �[�o^4:,1֩��%I�Ϟ,��I�Ejh75��}�Y�7�uB�&O*jl�E�eS�ba�␗���AIR]�P��l�'��f^����t…
10516 …�OL�(r��U ���5P�0��!މaG�1FTRHa�-���w �$���);%��]��D��dU���A�1rdz+����ba� �%�d`�?��(�!��Ih…
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_boolean/d/
DT_iget_boolean_4.dfh9 // parsed: offset 12, len 20: signature : 26ba...8627
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java1430 private static String convertByteArrayToHEXString(byte[] ba) throws Exception { in convertByteArrayToHEXString() argument
1432 for (int i = 0; i < ba.length; i++) { in convertByteArrayToHEXString()
1433 result.append(Integer.toString((ba[i] & 0xff) + 0x100, 16).substring(1)); in convertByteArrayToHEXString()
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DAdaptiveIconDrawableTest.java393 int ba = a.getPixel(i, j) & 0xff; in equalBitmaps() local