HomeSort by relevance Sort by last modified time
    Searched refs:bytebuf (Results 1 - 2 of 2) sorted by null

  /external/pixman/test/
prng-test.c 117 uint8_t *bytebuf = aligned_malloc(16, SMALLBUFSIZE + 1); local
162 prng_randmemset_r (&prng, bytebuf, 16, flags);
163 prng_randmemset_r (&prng, bytebuf + 16, SMALLBUFSIZE - 17, flags);
164 crc1 = compute_crc32 (0, bytebuf, SMALLBUFSIZE - 1);
166 prng_randmemset_r (&prng, bytebuf + 1, SMALLBUFSIZE - 1, flags);
167 crc2 = compute_crc32 (0, bytebuf + 1, SMALLBUFSIZE - 1);
172 free (bytebuf);
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 690 uint8_t bytebuf[7]; local
693 if (target->ReadMemory (last_seven_bytes, prefer_file_cache, bytebuf, 7, error) != -1)
695 if (bytebuf[5] == 0x5d && bytebuf[6] == 0xc3) // mov, ret
699 else if (bytebuf[0] == 0x5d && bytebuf[1] == 0xc3 && bytebuf[2] == 0xe8) // mov, ret, call
706 uint8_t bytebuf[2]; local
709 if (target->ReadMemory (last_two_bytes, prefer_file_cache, bytebuf, 2, error) != -1)
711 if (bytebuf[0] == 0x5d && bytebuf[1] == 0xc3) // mov, re
767 uint8_t bytebuf[4]; local
    [all...]

Completed in 136 milliseconds