HomeSort by relevance Sort by last modified time
    Searched defs:ByteArray (Results 1 - 25 of 31) sorted by null

1 2

  /libcore/crypto/src/main/java/org/conscrypt/
ByteArray.java 24 final class ByteArray {
28 ByteArray(byte[] bytes) {
38 if (!(o instanceof ByteArray)) {
41 ByteArray lhs = (ByteArray) o;
  /external/javassist/src/main/javassist/bytecode/
ByteArray.java 21 public class ByteArray {
ExceptionsAttribute.java 90 int index = ByteArray.readU16bit(src, i);
91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
140 ByteArray.write16bit(n, blist, 0);
142 ByteArray.write16bit(elist[i], blist, i * 2 + 2);
153 ByteArray.write16bit(n, blist, 0);
155 ByteArray.write16bit(constPool.addClassInfo(elist[i]),
InnerClassesAttribute.java 48 ByteArray.write16bit(0, get(), 0);
54 public int tableLength() { return ByteArray.readU16bit(get(), 0); }
60 return ByteArray.readU16bit(get(), nth * 8 + 2);
82 ByteArray.write16bit(index, get(), nth * 8 + 2);
89 return ByteArray.readU16bit(get(), nth * 8 + 4);
111 ByteArray.write16bit(index, get(), nth * 8 + 4);
118 return ByteArray.readU16bit(get(), nth * 8 + 6);
140 ByteArray.write16bit(index, get(), nth * 8 + 6);
147 return ByteArray.readU16bit(get(), nth * 8 + 8);
155 ByteArray.write16bit(flags, get(), nth * 8 + 8)
    [all...]
LocalVariableAttribute.java 41 ByteArray.write16bit(0, info, 0);
57 ByteArray.write16bit(0, info, 0);
83 ByteArray.write16bit(tableLength() + 1, newInfo, 0);
87 ByteArray.write16bit(startPc, newInfo, size);
88 ByteArray.write16bit(length, newInfo, size + 2);
89 ByteArray.write16bit(nameIndex, newInfo, size + 4);
90 ByteArray.write16bit(descriptorIndex, newInfo, size + 6);
91 ByteArray.write16bit(index, newInfo, size + 8);
100 int index = ByteArray.readU16bit(info, pos + 6);
104 ByteArray.write16bit(cp.addUtf8Info(desc), info, pos + 6)
    [all...]
MethodInfo.java 491 int mref = ByteArray.readU16bit(code, pos + 1);
495 ByteArray.write16bit(mref2, code, pos + 1);
StackMap.java 67 return ByteArray.readU16bit(info, 0);
141 int num = ByteArray.readU16bit(info, 0);
144 int offset = ByteArray.readU16bit(info, pos);
145 int numLoc = ByteArray.readU16bit(info, pos + 2);
147 int numStack = ByteArray.readU16bit(info, pos);
186 int clazz = ByteArray.readU16bit(info, pos + 1);
191 int offsetOfNew = ByteArray.readU16bit(info, pos + 1);
237 int num = ByteArray.readU16bit(info, 0);
238 ByteArray.write16bit(num, dest, 0);
243 ByteArray.write16bit(offset, dest, pos - 4)
    [all...]
CodeIterator.java 125 return ByteArray.readU16bit(bytecode, index);
132 return ByteArray.readS16bit(bytecode, index);
139 ByteArray.write16bit(value, bytecode, index);
146 return ByteArray.read32bit(bytecode, index);
153 ByteArray.write32bit(value, bytecode, index);
279 int mref = ByteArray.readU16bit(bytecode, index + 1);
758 int npairs = ByteArray.read32bit(code, index2);
762 int low = ByteArray.read32bit(code, index2);
763 int high = ByteArray.read32bit(code, index2 + 4);
876 ByteArray.write16bit(offset, newcode, j + 1)
    [all...]
AnnotationsAttribute.java 156 return ByteArray.readU16bit(info, 0);
328 int num = ByteArray.readU16bit(info, pos);
340 int type = ByteArray.readU16bit(info, pos);
341 int numPairs = ByteArray.readU16bit(info, pos + 2);
353 int nameIndex = ByteArray.readU16bit(info, pos);
364 int typeNameIndex = ByteArray.readU16bit(info, pos + 1);
365 int constNameIndex = ByteArray.readU16bit(info, pos + 3);
370 int index = ByteArray.readU16bit(info, pos + 1);
377 int num = ByteArray.readU16bit(info, pos + 1);
381 int index = ByteArray.readU16bit(info, pos + 1)
    [all...]
StackMapTable.java 165 numOfEntries = ByteArray.readU16bit(data, 0);
205 int offset = ByteArray.readU16bit(info, pos + 1);
210 int offset = ByteArray.readU16bit(info, pos + 1);
238 offset = ByteArray.readU16bit(info, pos + 1);
245 data = ByteArray.readU16bit(info, pos + 2);
279 int offset = ByteArray.readU16bit(info, pos + 1);
287 data[i] = ByteArray.readU16bit(info, p + 1);
313 int offset = ByteArray.readU16bit(info, pos + 1);
314 int numOfLocals = ByteArray.readU16bit(info, pos + 3);
318 int numOfItems = ByteArray.readU16bit(info, p)
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
byte_array.h 30 class ByteArray : virtual public RefCount {
32 virtual ~ByteArray();
86 // @param index the index into the ByteArray
96 // Fully copies this ByteArray to another ByteArray to the extent that the
98 virtual int32_t CopyTo(ByteArray* array);
100 // Copies a segment of this ByteArray to another ByteArray.
102 // @param offset the offset in this ByteArray to start copying from
105 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length)
    [all...]
byte_array.cc 25 const int32_t ByteArray::COPY_BUFFER_SIZE = 8192;
27 ByteArray::~ByteArray() {}
29 int32_t ByteArray::Length() { return filled_length_; }
30 int32_t ByteArray::Size() { return storage_length_; }
32 int32_t ByteArray::SetFilledLength(int32_t filled_length) {
37 int32_t ByteArray::Get(int32_t index) {
41 int32_t ByteArray::Get(int32_t index, ByteVector* b) {
46 int32_t ByteArray::Get(int32_t index,
58 void ByteArray::Put(int32_t index, byte_t b)
    [all...]
  /art/compiler/utils/
dedupe_set_test.cc 40 typedef std::vector<uint8_t> ByteArray;
41 DedupeSet<ByteArray, size_t, DedupeHashFunc> deduplicator;
42 ByteArray* array1;
44 ByteArray test1;
53 ByteArray* array2;
55 ByteArray test1;
65 ByteArray* array3;
67 ByteArray test1;
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 20 import javassist.bytecode.ByteArray;
350 ByteArray.write16bit(value, buf, 0);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 124 static bool ByteArrayFromString(ByteArrayTy &ByteArray,
143 ByteArray.clear();
147 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
173 ByteArrayTy ByteArray;
178 ByteArray.clear();
201 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
203 if (!ByteArray.empty())
204 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArray.java 33 public final class ByteArray {
52 public ByteArray(byte[] bytes, int start, int end) {
79 public ByteArray(byte[] bytes) {
100 public ByteArray slice(int start, int end) {
102 return new ByteArray(bytes, start + this.start, end + this.start);
  /art/runtime/mirror/
object.h 41 typedef PrimitiveArray<int8_t> ByteArray;
142 ByteArray* AsByteArray();
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 29 public final class ByteArray {
48 public ByteArray(byte[] bytes, int start, int end) {
75 public ByteArray(byte[] bytes) {
96 public ByteArray slice(int start, int end) {
98 return new ByteArray(bytes, start + this.start, end + this.start);
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 29 public final class ByteArray {
48 public ByteArray(byte[] bytes, int start, int end) {
75 public ByteArray(byte[] bytes) {
96 public ByteArray slice(int start, int end) {
98 return new ByteArray(bytes, start + this.start, end + this.start);
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 29 public final class ByteArray {
48 public ByteArray(byte[] bytes, int start, int end) {
75 public ByteArray(byte[] bytes) {
96 public ByteArray slice(int start, int end) {
98 return new ByteArray(bytes, start + this.start, end + this.start);
  /device/asus/grouper/keymaster/
keymaster_grouper.cpp 76 class ByteArray {
78 ByteArray(CK_BYTE* array, size_t len) :
82 ByteArray(size_t len) :
87 ~ByteArray() {
115 typedef UniquePtr<ByteArray> Unique_ByteArray;
220 static ByteArray* bignum_to_array(const BIGNUM* bn) {
231 return new ByteArray(bytes.release(), bignumSize);
241 static ByteArray* generate_random_id() {
242 Unique_ByteArray id(new ByteArray(ID_LENGTH));
250 static int keyblob_save(ByteArray* objId, uint8_t** key_blob, size_t* key_blob_length)
    [all...]
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 76 class ByteArray {
78 ByteArray(CK_BYTE* array, size_t len) :
82 ByteArray(size_t len) :
87 ~ByteArray() {
115 typedef UniquePtr<ByteArray> Unique_ByteArray;
220 static ByteArray* bignum_to_array(const BIGNUM* bn) {
231 return new ByteArray(bytes.release(), bignumSize);
241 static ByteArray* generate_random_id() {
242 Unique_ByteArray id(new ByteArray(ID_LENGTH));
250 static int keyblob_save(ByteArray* objId, uint8_t** key_blob, size_t* key_blob_length)
    [all...]
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 76 class ByteArray {
78 ByteArray(CK_BYTE* array, size_t len) :
82 ByteArray(size_t len) :
87 ~ByteArray() {
115 typedef UniquePtr<ByteArray> Unique_ByteArray;
220 static ByteArray* bignum_to_array(const BIGNUM* bn) {
231 return new ByteArray(bytes.release(), bignumSize);
241 static ByteArray* generate_random_id() {
242 Unique_ByteArray id(new ByteArray(ID_LENGTH));
250 static int keyblob_save(ByteArray* objId, uint8_t** key_blob, size_t* key_blob_length)
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
Tracer.java 18 import javassist.bytecode.ByteArray;
195 doLDC(ByteArray.readU16bit(code, pos + 1));
551 visitBranch(pos, code, ByteArray.readS16bit(code, pos + 1));
562 visitBranch(pos, code, ByteArray.readS16bit(code, pos + 1));
565 visitGoto(pos, code, ByteArray.readS16bit(code, pos + 1));
576 int low = ByteArray.read32bit(code, pos2);
577 int high = ByteArray.read32bit(code, pos2 + 4);
579 visitTableSwitch(pos, code, n, pos2 + 8, ByteArray.read32bit(code, pos2 - 4));
584 int n = ByteArray.read32bit(code, pos2);
585 visitLookupSwitch(pos, code, n, pos2 + 4, ByteArray.read32bit(code, pos2 - 4))
    [all...]
  /art/runtime/
runtime.h 49 typedef PrimitiveArray<int8_t> ByteArray;

Completed in 1337 milliseconds

1 2