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

1 2 3 4 5 6 7 8

  /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);
209 ByteArray key = new ByteArray(id);
231 ByteArray key = new ByteArray(id);
249 session = sessions.get(new ByteArray(sessionId))
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
ByteArray.java 25 final class ByteArray {
29 ByteArray(byte[] bytes) {
41 if (!(o instanceof ByteArray)) {
44 ByteArray lhs = (ByteArray) o;
AbstractSessionContext.java 46 private final Map<ByteArray, NativeSslSession> sessions =
47 new LinkedHashMap<ByteArray, NativeSslSession>() {
50 Map.Entry<ByteArray, NativeSslSession> eldest) {
123 ByteArray key = new ByteArray(sessionId);
210 ByteArray key = new ByteArray(id);
232 ByteArray key = new ByteArray(id);
250 session = sessions.get(new ByteArray(sessionId))
    [all...]
  /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/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,
  /art/runtime/mirror/
emulated_stack_frame-inl.h 42 inline ObjPtr<mirror::ByteArray> EmulatedStackFrame::GetStackFrame() {
43 return GetFieldObject<mirror::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-7.0/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 17 class ByteArray;
44 Handle<ByteArray> ToSourcePositionTable(Isolate* isolate);
73 explicit SourcePositionTableIterator(Handle<ByteArray> byte_array);
78 explicit SourcePositionTableIterator(ByteArray* byte_array);
111 Handle<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);
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 21 import com.android.dx.util.ByteArray;
60 ByteArray ba = new ByteArray(bytes);
  /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))
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 25 import com.android.dx.util.ByteArray;
82 ByteArray bytes = cf.getBytes();
124 ByteArray bytes = cf.getBytes();
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 24 import com.android.dx.util.ByteArray;
132 public void startParsingMember(ByteArray bytes, int offset,
134 // ByteArray ba = bytes.slice(offset, bytes.size());
152 public void endParsingMember(ByteArray bytes, int offset,
154 ByteArray ba = bytes.slice(offset, bytes.size());
170 public void parsed(ByteArray bytes, int offset, int len,
176 ByteArray ba = bytes.slice(offset, offset + len);
188 private void check(ByteArray ba) {
203 private String dumpBytes(ByteArray ba) {
216 private String dumpReadableString(ByteArray ba)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringDataItem.java 21 import com.android.dexgen.util.ByteArray;
72 ByteArray bytes = value.getBytes();

Completed in 301 milliseconds

1 2 3 4 5 6 7 8