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

1 2 3 4 5 6 7 8 91011>>

  /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;
AbstractSessionContext.java 45 private final Map<ByteArray, NativeSslSession> sessions =
46 new LinkedHashMap<ByteArray, NativeSslSession>() {
49 Map.Entry<ByteArray, NativeSslSession> eldest) {
122 ByteArray key = new ByteArray(sessionId);
211 ByteArray key = new ByteArray(id);
229 session = sessions.get(new ByteArray(sessionId));
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 19 import com.android.dx.util.ByteArray;
43 public void startParsingMember(ByteArray bytes, int offset, String name,
56 public void endParsingMember(ByteArray bytes, int offset, String name,
67 public void parsed(ByteArray bytes, int offset, int len, String human);
  /external/javassist/src/main/javassist/bytecode/
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...]
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...]
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]),
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...]
LineNumberAttribute.java 46 return ByteArray.readU16bit(info, 0);
57 return ByteArray.readU16bit(info, i * 4 + 2);
68 return ByteArray.readU16bit(info, i * 4 + 4);
176 int pc = ByteArray.readU16bit(info, pos);
178 ByteArray.write16bit(pc + gapLength, info, pos);
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.h 26 class GrowableMemoryByteArray : public ByteArray,
34 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); }
35 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) {
36 return ByteArray::CopyTo(array, offset, length);
39 ByteArray* array,
42 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
44 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); }
memory_byte_array.h 24 class MemoryByteArray : public ByteArray, public RefCounted<MemoryByteArray> {
46 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); }
47 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) {
48 return ByteArray::CopyTo(array, offset, length);
51 ByteArray* array,
54 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
56 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); }
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...]
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...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 20 import com.android.dx.util.ByteArray;
27 private final ByteArray data;
42 public RawAttribute(String name, ByteArray data, ConstantPool pool) {
54 * Constructs an instance from a sub-array of a {@link ByteArray}.
62 public RawAttribute(String name, ByteArray data, int offset,
72 public ByteArray getData() {
  /external/sfntly/cpp/src/test/
test_utils.h 43 static bool Equals(ByteArray* b1,
45 ByteArray* b2,
48 // @param offset1 offset to start comparing the first ByteArray from
49 // @param ba1 the first ByteArray
50 // @param offset2 offset to start comparing the second ByteArray from
51 // @param ba2 the second ByteArray
55 static bool Equals(ByteArray* b1,
57 ByteArray* b2,
84 static int64_t CheckSum(ByteArray* b, int32_t offset, int32_t length);
byte_array_test.cc 29 void FillTestByteArray(ByteArray* ba, int32_t size) {
35 void ReadByteArrayWithBuffer(ByteArray* ba, ByteVector* buffer, ByteVector* b) {
46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size,
59 bool ReadComparison(ByteArray* ba1, ByteArray* ba2) {
93 bool CopyTest(ByteArray* ba) {
107 bool ByteArrayTester(ByteArray* ba) {
143 TEST(ByteArray, All) {
  /external/v8/src/regexp/
interpreter-irregexp.h 20 Handle<ByteArray> code,
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/archive/
ArchiveFile.kt 26 class ArchiveFile(relativePath: Path, data: ByteArray) : ArchiveItem {
37 var data: ByteArray = data
62 fun setNewData(newData: ByteArray) {
76 fun setNewDataSilently(newData: 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/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/v8/src/
source-position-table.h 19 class ByteArray;
46 Handle<ByteArray> ToSourcePositionTable(Isolate* isolate,
64 explicit SourcePositionTableIterator(ByteArray* byte_array);
85 ByteArray* table_;
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 91 * Writes a {@link ByteArray} to this instance.
95 public void write(ByteArray bytes);
  /dalvik/dx/src/com/android/dx/util/
Output.java 94 * Writes a {@link ByteArray} to this instance.
98 public void write(ByteArray bytes);
  /frameworks/support/core/ktx/src/main/java/androidx/core/util/
AtomicFile.kt 50 fun AtomicFile.writeBytes(array: ByteArray) {
71 inline fun AtomicFile.readBytes(): ByteArray = readFully()
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 21 import com.android.dx.util.ByteArray;
60 ByteArray ba = new ByteArray(bytes);

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>