HomeSort by relevance Sort by last modified time
    Searched full:memzero (Results 1 - 25 of 34) sorted by null

1 2

  /external/libjpeg-turbo/
jinclude.h 64 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
70 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
jutils.c 132 MEMZERO(target, bytestozero);
wrbmp.c 230 MEMZERO(bmpfileheader, sizeof(bmpfileheader));
231 MEMZERO(bmpinfoheader, sizeof(bmpinfoheader));
298 MEMZERO(bmpfileheader, sizeof(bmpfileheader));
299 MEMZERO(bmpcoreheader, sizeof(bmpcoreheader));
jchuff.c 185 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * sizeof(long));
190 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * sizeof(long));
291 MEMZERO(dtbl->ehufsi, sizeof(dtbl->ehufsi));
899 MEMZERO(bits, sizeof(bits));
900 MEMZERO(codesize, sizeof(codesize));
    [all...]
jdapimin.c 55 MEMZERO(cinfo, sizeof(struct jpeg_decompress_struct));
94 MEMZERO(cinfo->master, sizeof(my_decomp_master));
jdarith.c 210 MEMZERO(entropy->dc_stats[compptr->dc_tbl_no], DC_STAT_BINS);
216 MEMZERO(entropy->ac_stats[compptr->ac_tbl_no], AC_STAT_BINS);
707 MEMZERO(entropy->dc_stats[tbl], DC_STAT_BINS);
719 MEMZERO(entropy->ac_stats[tbl], AC_STAT_BINS);
jcarith.c 338 MEMZERO(entropy->dc_stats[compptr->dc_tbl_no], DC_STAT_BINS);
345 MEMZERO(entropy->ac_stats[compptr->ac_tbl_no], AC_STAT_BINS);
867 MEMZERO(entropy->dc_stats[tbl], DC_STAT_BINS);
880 MEMZERO(entropy->ac_stats[tbl], AC_STAT_BINS);
jstdhuff.c 45 MEMZERO(&((*htblptr)->huffval[nsymbols]), (256 - nsymbols) * sizeof(UINT8));
wrrle.c 122 MEMZERO(dest->colormap, cmapsize);
wrtarga.c 54 MEMZERO(targaheader, sizeof(targaheader));
jcapimin.c 55 MEMZERO(cinfo, sizeof(struct jpeg_compress_struct));
jddctmgr.c 348 MEMZERO(compptr->dct_table, sizeof(multiplier_table));
jcphuff.c 172 MEMZERO(entropy->count_ptrs[tbl], 257 * sizeof(long));
785 MEMZERO(did, sizeof(did));
jdmaster.c 432 MEMZERO(table - (MAXJSAMPLE+1), (MAXJSAMPLE+1) * sizeof(JSAMPLE));
441 MEMZERO(table + (2 * (MAXJSAMPLE+1)),
  /external/tensorflow/tensorflow/stream_executor/host/
host_gpu_executor.cc 103 bool HostExecutor::MemZero(Stream *stream, DeviceMemoryBase *location,
106 // Enqueue the [asynchronous] memzero on the stream (HostStream) associated
116 // Enqueue the [asynchronous] memzero on the stream (HostStream) associated
126 // Enqueue the [asynchronous] memzero on the stream (HostStream) associated
host_gpu_executor.h 84 bool MemZero(Stream *stream, DeviceMemoryBase *location,
  /external/xz-embedded/userspace/
xz_config.h 48 #define memzero(buf, size) memset(buf, 0, size) macro
  /external/xz-embedded/linux/lib/xz/
xz_private.h 41 # define memzero(buf, size) memset(buf, 0, size) macro
xz_dec_stream.c 848 memzero(&s->block, sizeof(s->block));
849 memzero(&s->index, sizeof(s->index));
  /external/xz-embedded/linux/lib/
decompress_unxz.c 167 * memeq and memzero are not used much and any remotely sane implementation
191 #ifndef memzero
192 static void memzero(void *buf, size_t size) function
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executor.h 94 bool MemZero(Stream *stream, DeviceMemoryBase *location,
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_gpu_executor.h 112 bool MemZero(Stream *stream, DeviceMemoryBase *location,
  /external/libvncserver/common/
turbojpeg.c 46 #define MEMZERO(ptr, size) memset(ptr, 0, size)
493 MEMZERO(this, sizeof(tjinstance));
679 MEMZERO(this, sizeof(tjinstance));
  /external/syslinux/memdisk/
unzip.c 27 #define memzero(s, n) memset ((s), 0, (n)) macro
  /external/tensorflow/tensorflow/stream_executor/
stream_executor_pimpl.cc 627 bool StreamExecutor::MemZero(Stream *stream, DeviceMemoryBase *location,
629 return implementation_->MemZero(stream, location, size);

Completed in 3764 milliseconds

1 2