HomeSort by relevance Sort by last modified time
    Searched full:num_bytes (Results 151 - 175 of 219) sorted by null

1 2 3 4 5 67 8 9

  /system/extras/pagecache/
pagecache.py 57 def bytes_to_mb(self, num_bytes):
58 return "%.2f" % round(int(num_bytes) / 1024.0 / 1024.0, 2)
  /hardware/qcom/audio/hal/audio_extn/
soundtrigger.c 148 event.u.aud_info.num_bytes = bytes;
  /external/libvncserver/common/
turbojpeg.c 635 static void skip_input_data(j_decompress_ptr dinfo, long num_bytes)
637 dinfo->src->next_input_byte += (size_t) num_bytes;
638 dinfo->src->bytes_in_buffer -= (size_t) num_bytes;
  /external/valgrind/none/tests/s390x/
cu12.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 2 != 0)
135 for (i = 0; i < num_bytes / 2; i++) {
cu12_1.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 2 != 0)
135 for (i = 0; i < num_bytes / 2; i++) {
cu14.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 4 != 0)
135 for (i = 0; i < num_bytes / 4; i++) {
cu14_1.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 4 != 0)
135 for (i = 0; i < num_bytes / 4; i++) {
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_cam_sensor.h 531 uint32_t num_bytes; member in struct:eeprom_get_t
536 uint32_t num_bytes; member in struct:eeprom_read_t
541 uint32_t num_bytes; member in struct:eeprom_write_t
  /art/runtime/gc/
heap.h 194 size_t num_bytes,
200 self, klass, num_bytes, GetCurrentAllocator(), pre_fence_visitor);
206 size_t num_bytes,
212 self, klass, num_bytes, GetCurrentNonMovingAllocator(), pre_fence_visitor);
    [all...]
  /external/libavc/test/encoder/
main.c 1521 WORD32 i, is_last = 0, buff_size = 0, num_bytes = 0; local
    [all...]
  /system/tpm/trunks/
trunks_client_test.cc 79 size_t num_bytes = 70; local
85 result = utility->GenerateRandom(num_bytes, session->GetDelegate(),
92 if (num_bytes != random_data.size()) {
    [all...]
tpm_utility_test.cc 397 size_t num_bytes = 72; local
411 num_bytes, &mock_authorization_delegate_, &random_data));
412 EXPECT_EQ(num_bytes, random_data.size());
416 size_t num_bytes = 5; local
421 utility_.GenerateRandom(num_bytes, nullptr, &random_data));
    [all...]
  /external/libavc/encoder/
ih264e_structs.h 100 typedef void (*pf_memcpy)(UWORD8 *pu1_dst, UWORD8 *pu1_src, UWORD32 num_bytes);
102 typedef void (*pf_memset)(UWORD8 *pu1_dst, UWORD8 value, UWORD32 num_bytes);
104 typedef void (*pf_memcpy_mul8)(UWORD8 *pu1_dst, UWORD8 *pu1_src, UWORD32 num_bytes);
106 typedef void (*pf_memset_mul8)(UWORD8 *pu1_dst, UWORD8 value, UWORD32 num_bytes);
    [all...]
  /external/opencv3/3rdparty/libpng/
png.c 19 /* Tells libpng that we have already handled the first "num_bytes" bytes
21 * stream we can set num_bytes = 8 so that libpng will not attempt to read
27 png_set_sig_bytes(png_structp png_ptr, int num_bytes)
34 if (num_bytes > 8)
37 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
78 png_alloc_size_t num_bytes; local
88 num_bytes = (png_alloc_size_t)items * size;
91 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_toIR.c 13420 IRTemp num_bytes = newTemp(Ity_I64); local
13622 IRTemp num_bytes = newTemp(Ity_I64); local
13716 IRTemp num_bytes = newTemp(Ity_I64); local
13880 IRTemp num_bytes = newTemp(Ity_I64); local
    [all...]
guest_s390_defs.h 82 void s390x_dirtyhelper_CUxy(UChar *addr, ULong data, ULong num_bytes);