HomeSort by relevance Sort by last modified time
    Searched refs:Bytes (Results 26 - 50 of 158) sorted by null

12 3 4 5 6 7

  /external/llvm/include/llvm/Transforms/IPO/
LowerBitSets.h 45 // represent addresses 8 bytes apart.
179 std::vector<uint8_t> Bytes;
183 /// The number of bytes allocated so far for each of the bits.
  /external/llvm/include/llvm-c/
Disassembler.h 41 * information for each operand, the bytes for the specific operand in the
234 * the parameter DC. The bytes of the instruction are specified in the
235 * parameter Bytes, and contains at least BytesSize number of bytes. The
239 * function returns the number of bytes in the instruction or zero if there was
242 size_t LLVMDisasmInstruction(LLVMDisasmContextRef DC, uint8_t *Bytes,
  /external/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 31 ArrayRef<uint8_t> Bytes, uint64_t Address,
347 ArrayRef<uint8_t> Bytes,
351 // Get the first two bytes of the instruction.
353 if (Bytes.size() < 2)
358 if (Bytes[0] < 0x40) {
361 } else if (Bytes[0] < 0xc0) {
369 // Read any remaining bytes.
370 if (Bytes.size() < Size)
376 Inst = (Inst << 8) | Bytes[I];
  /external/parameter-framework/upstream/test/functional-tests/
Handle.cpp 51 using Bytes = std::vector<uint8_t>;
306 /** Print Bytes as string separated hexadecimal number. */
307 static string showBytes(const Bytes &bytes)
312 for (auto byte : bytes) {
318 static Bytes readBytes(const string &strBytes)
323 Bytes bytes(strBytes.size() / 3);
325 for (auto &byte : bytes) {
330 return bytes;
    [all...]
  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 39 ArrayRef<uint8_t> Bytes, uint64_t Address,
45 static bool readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address,
47 // We want to read exactly 2 Bytes of data.
48 if (Bytes.size() < 2) {
53 Insn = (Bytes[0] << 0) | (Bytes[1] << 8);
57 static bool readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
59 // We want to read exactly 4 Bytes of data.
60 if (Bytes.size() < 4) {
66 (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) | (Bytes[3] << 24)
    [all...]
  /external/skia/src/images/
SkMovie_gif.cpp 79 const uint8_t* b = (const uint8_t*)image->ExtensionBlocks[j].Bytes;
235 bool has_transparency = ((eb->Bytes[0] & 1) == 1);
237 transparent = (unsigned char)eb->Bytes[3];
270 int disposal = ((eb->Bytes[0] >> 2) & 7);
287 *trans = ((eb->Bytes[0] & 1) == 1);
288 *disposal = ((eb->Bytes[0] >> 2) & 7);
  /external/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 40 ArrayRef<uint8_t> Bytes, uint64_t Address,
269 /// Read four bytes from the ArrayRef and return 32 bit word.
270 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
273 // We want to read exactly 4 Bytes of data.
274 if (Bytes.size() < 4) {
280 ? (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) |
281 (Bytes[3] << 24)
282 : (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16)
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
TextRecord.java 22 import com.google.common.primitives.Bytes;
145 byte[] data = Bytes.concat(
  /external/giflib/
gifalloc.c 250 ep->Bytes = (GifByteType *)malloc(ep->ByteCount);
251 if (ep->Bytes == NULL)
255 memcpy(ep->Bytes, ExtData, Len);
273 (void)free((char *)ep->Bytes);
  /external/harfbuzz_ng/src/
sample.py 23 # Need to create GLib.Bytes explicitly until this bug is fixed:
25 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata))
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 26 /// Convert `Bytes' to a hex string and output to `OS'
27 void dumpBytes(ArrayRef<uint8_t> Bytes, raw_ostream &OS);
MCContext.h 551 /// \param Bytes The number of bytes to allocate. Calculated by the compiler.
556 inline void *operator new(size_t Bytes, llvm::MCContext &C,
558 return C.allocate(Bytes, Alignment);
585 /// \param Bytes The number of bytes to allocate. Calculated by the compiler.
590 inline void *operator new[](size_t Bytes, llvm::MCContext &C,
592 return C.allocate(Bytes, Alignment);
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 74 // We first layout the aggregate in 'buffer' in bytes, except for
86 const unsigned size; // size of the buffer in bytes
110 unsigned addBytes(unsigned char *Ptr, int Num, int Bytes) {
112 assert((curpos + Bytes) <= size);
117 for (int i = Num; i < Bytes; ++i) {
139 // print out in bytes
146 // print out in 4-bytes or 8-bytes
281 void bufferLEByte(const Constant *CPV, int Bytes, AggBuffer *aggBuffer);
  /external/valgrind/none/tests/x86-linux/
seg_override.c 18 /*Declare as bytes to avoid alignment problems */
21 } Bytes;
63 printf("got %d bytes\n", res );
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 78 && !memcmp((const char*)(eb1->Bytes), "NETSCAPE2.0", 11)
82 && eb2->Bytes[0] == 1) {
83 mLoopCount = (int)(eb2->Bytes[2] << 8) + (int)(eb2->Bytes[1]);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 141 const uint8_t *Bytes;
144 BufferMemoryObject(const uint8_t *bytes, uint64_t length) :
145 Bytes(bytes), Length(length)
163 *byte = Bytes[addr];
183 const uint8_t *bytes = (const uint8_t *)func; local
290 BufferMemoryObject memoryObject((const uint8_t *)bytes, extent);
317 * Output the bytes in hexidecimal format.
323 debug_printf("%02x ", ((const uint8_t*)bytes)[pc + i]);
423 debug_printf("disassemble %p %p\n", bytes, bytes + pc)
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 155 "the instruction bytes."));
302 ArrayRef<uint8_t> Bytes, uint64_t Address,
308 dumpBytes(Bytes, outs());
316 void printLead(ArrayRef<uint8_t> Bytes, uint64_t Address,
319 (Bytes[3] << 24) | (Bytes[2] << 16) | (Bytes[1] << 8) | Bytes[0];
323 dumpBytes(Bytes.slice(0, 4), OS);
328 ArrayRef<uint8_t> Bytes, uint64_t Address
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 100 ArrayRef<uint8_t> Bytes;
102 Region(ArrayRef<uint8_t> Bytes, uint64_t Base) : Bytes(Bytes), Base(Base) {}
114 ArrayRef<uint8_t> Bytes = R->Bytes;
116 if (Bytes.size() <= Index)
118 *Byte = Bytes[Index];
141 MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes, uint64_t Address,
151 Region R(Bytes, Address)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 132 /// bytes emitted.
153 /// EmitMatcher - Emit bytes for the specified matcher and return
154 /// the number of bytes emitted.
315 IdxSize = 2; // size of opcode in table is 2 bytes.
395 unsigned Bytes=1+EmitVBRValue(cast<CheckIntegerMatcher>(N)->getValue(), OS);
397 return Bytes;
402 unsigned Bytes=1+EmitVBRValue(cast<CheckChildIntegerMatcher>(N)->getValue(),
405 return Bytes;
438 unsigned Bytes=1+EmitVBRValue(cast<CheckAndImmMatcher>(N)->getValue(), OS);
440 return Bytes;
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 58 ArrayRef<uint8_t> Bytes, uint64_t Address,
806 /// Read two bytes from the ArrayRef and return 16 bit halfword sorted
808 static DecodeStatus readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address,
811 // We want to read exactly 2 Bytes of data.
812 if (Bytes.size() < 2) {
818 Insn = (Bytes[0] << 8) | Bytes[1];
820 Insn = (Bytes[1] << 8) | Bytes[0];
826 /// Read four bytes from the ArrayRef and return 32 bit word sorte
    [all...]
  /external/boringssl/src/util/
all_tests.go 18 "bytes"
135 var stdoutBuf bytes.Buffer
136 var stderrBuf bytes.Buffer
157 fmt.Print(string(stderrBuf.Bytes()))
160 fmt.Print(string(stderrBuf.Bytes()))
163 stdout := bytes.Replace(stdoutBuf.Bytes(), []byte("\r\n"), []byte("\n"), -1)
165 if bytes.HasSuffix(stdout, []byte("PASS\n")) &&
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
ByteArrayAsListTest.java 30 * Test suite covering {@link Bytes#asList(byte[])}.
42 return Bytes.asList(temp);
  /external/llvm/lib/IR/
Attributes.cpp 92 uint64_t Bytes) {
93 assert(Bytes && "Bytes must be non-zero.");
94 return get(Context, Dereferenceable, Bytes);
98 uint64_t Bytes) {
99 assert(Bytes && "Bytes must be non-zero.");
100 return get(Context, DereferenceableOrNull, Bytes);
171 /// This returns the number of dereferenceable bytes.
174 "Trying to get dereferenceable bytes from
    [all...]
  /external/llvm/unittests/Transforms/IPO/
LowerBitSets.cpp 153 EXPECT_EQ(T.WantBytes, BABuilder.Bytes);
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 407 UnicodeString.MaximumLength = sizeof(Buffer); // in bytes!!!
892 IN ULONG Bytes,
905 ASSERT(0 == (Bytes % 512));
916 &IoStatusBlock, Buffer, Bytes, &Offset, NULL);
921 &IoStatusBlock, Buffer, Bytes, &Offset, NULL);
947 IN ULONG Bytes,
952 return _BlockIo(Handle, Offset, Bytes, (PCHAR)Buffer, FALSE, Errno);
960 IN ULONG Bytes,
965 return _BlockIo(Handle, Offset, Bytes, Buffer, TRUE, Errno);

Completed in 782 milliseconds

12 3 4 5 6 7