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

1 2 3 4 5 6

  /external/conscrypt/common/src/main/java/org/conscrypt/
ByteArray.java 24 final class ByteArray {
28 ByteArray(byte[] bytes) {
40 if (!(o instanceof ByteArray)) {
43 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...]
SignatureAttribute.java 61 return getConstPool().getUtf8Info(ByteArray.readU16bit(get(), 0));
73 ByteArray.write16bit(index, info, 0);
  /external/mdnsresponder/mDNSWindows/DLLX/
TXTRecord.h 148 typedef std::vector< BYTE > ByteArray;
150 ByteArray m_byteArray;
  /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) {
43 int32_t ByteArray::Get(int32_t index, ByteVector* b) {
48 int32_t ByteArray::Get(int32_t index,
60 void ByteArray::Put(int32_t index, byte_t b)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
BinToPcd.py 54 def ByteArray (Buffer):
110 Pcd = ByteArray (Buffer)
124 Pcd = ' %s|%s' % (args.PcdName, ByteArray (Buffer))
129 Pcd = ' %s|%s|VOID*|%d' % (args.PcdName, ByteArray (Buffer), args.MaxSize)
153 Pcd = ' %s|*|%d|%s' % (args.PcdName, args.MaxSize, ByteArray (Buffer))
158 Pcd = ' %s|%d|%d|%s' % (args.PcdName, args.Offset, args.MaxSize, ByteArray (Buffer))
175 Pcd = ' %s|L"%s"|%s|%d|%s' % (args.PcdName, args.VariableName, args.VariableGuid, args.Offset, ByteArray (Buffer))
  /packages/services/Car/tools/emulator/
diagnostic_builder.py 26 class ByteArray(object):
30 self.data = bytearray(numElements/8)
33 self.data = bytearray(1+numElements/8)
62 self.bitmask = DiagnosticEventBuilder.ByteArray(
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 101 static bool ByteArrayFromString(ByteArrayTy &ByteArray,
120 ByteArray.first.clear();
121 ByteArray.second.clear();
125 ByteArray.first.push_back(ByteVal);
126 ByteArray.second.push_back(Value.data());
169 ByteArrayTy ByteArray;
174 ByteArray.first.clear();
175 ByteArray.second.clear();
198 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
200 if (!ByteArray.first.empty()
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 20 import javassist.bytecode.ByteArray;
350 ByteArray.write16bit(value, buf, 0);
  /frameworks/base/core/java/android/text/
AutoGrowArray.java 51 public static class ByteArray {
57 * Creates an empty ByteArray with the default initial capacity.
59 public ByteArray() {
64 * Creates an empty ByteArray with the specified initial capacity.
66 public ByteArray(@IntRange(from = 0) int initialCapacity) {
76 * Changes the size of this ByteArray. If this ByteArray is shrinked, the backing array
  /art/runtime/mirror/
object.h 52 typedef PrimitiveArray<int8_t> ByteArray;
221 ByteArray* AsByteArray() REQUIRES_SHARED(Locks::mutator_lock_);
223 ByteArray* AsByteSizedArray() REQUIRES_SHARED(Locks::mutator_lock_);
    [all...]
  /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 30 public final class ByteArray {
49 public ByteArray(byte[] bytes, int start, int end) {
76 public ByteArray(byte[] bytes) {
97 public ByteArray slice(int start, int end) {
100 return new ByteArray(slicedOut);
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 95 static bool ByteArrayFromString(ByteArrayTy &ByteArray,
131 ByteArray.clear();
135 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
182 ByteArrayTy ByteArray;
185 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
187 if (!ByteArray.empty())
188 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
194 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg);
196 if (A >= ByteArray.size())
199 *B = ByteArray[A].first
    [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...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 203 GlobalVariable *ByteArray;
322 BAI->ByteArray = ByteArrayGlobal;
347 auto ByteArray =
357 ByteArrayConst->getType(), ByteArray, Idxs);
363 BAI->ByteArray->replaceAllUsesWith(GEP);
367 BAI->ByteArray->replaceAllUsesWith(Alias);
369 BAI->ByteArray->eraseFromParent();
402 Constant *ByteArray = BAI->ByteArray;
403 Type *Ty = BAI->ByteArray->getValueType()
    [all...]

Completed in 679 milliseconds

1 2 3 4 5 6