HomeSort by relevance Sort by last modified time
    Searched refs:fwrite (Results 326 - 350 of 824) sorted by null

<<11121314151617181920>>

  /external/libyuv/files/util/
yuvconvert.cc 332 fwrite(ch_rec, sizeof(uint8), static_cast<size_t>(total_size),
338 fwrite(ch_dst, sizeof(uint8), static_cast<size_t>(dst_size),
  /external/perfetto/src/perfetto_cmd/
perfetto_cmd.cc 290 fwrite(reinterpret_cast<const char*>(preamble),
293 fwrite(reinterpret_cast<const char*>(slice.start), slice.size, 1,
  /sdk/emulator/mksdcard/src/source/
mksdcard.c 192 int result = fwrite( sector, 1, BYTES_PER_SECTOR, file ) != BYTES_PER_SECTOR;
210 if ( fwrite( empty, 1, len, file ) != (size_t)len ) {
  /external/pdfium/samples/
pdfium_test.cc 188 if (fwrite(result.data(), out_len, 1, fp) != 1)
212 if (fwrite(&bom, sizeof(bom), 1, fp) != 1) {
221 if (fwrite(&c, sizeof(c), 1, fp) != 1) {
476 size_t bytes_written = fwrite(
519 if (fwrite(&file_header, sizeof(file_header), 1, fp) != 1 ||
520 fwrite(&bmi, bmi.bmiHeader.biSize, 1, fp) != 1 ||
521 fwrite(buffer, out_len, 1, fp) != 1) {
586 if (fwrite(data + sizeof(uint16_t), size, 1, fp) != 1) {
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess_elf.c 284 ret = fwrite(buf, bufUsed, 1, out) == 1 ? 0 : 2;
    [all...]
  /device/generic/goldfish/fingerprint/
fingerprint.c 117 int ns = fwrite(&listener->secureid[idx], sizeof(uint64_t), 1, fp);
125 int nf = fwrite(&listener->fingerid[idx], sizeof(uint64_t), 1, fp);
146 fwrite(&zero, sizeof(uint64_t), 1, fp);
150 fwrite(&zero, sizeof(uint64_t), 1, fp);
166 int na = fwrite(&authenid, sizeof(authenid), 1, fp);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
EfiRom.c 375 if (fwrite (Buffer, FileSize, 1, OutFptr) != 1) {
669 if (fwrite (&RomHdr, sizeof (RomHdr), 1, OutFptr) != 1) {
691 if (fwrite (&PciDs23, sizeof (PciDs23), 1, OutFptr) != 1) {
697 if (fwrite (&PciDs30, sizeof (PciDs30), 1, OutFptr) != 1) {
718 if (fwrite (Buffer, FileSize, 1, OutFptr) != 1) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
minigzip.c 253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
443 if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
444 error("failed fwrite");
  /external/blktrace/
blkiomon.c 242 if (fwrite(p, sizeof(*p), 1, binary.fp) != 1)
436 if (fwrite(bit, sizeof(*bit), 1, drvdata.fp) != 1)
438 if (fwrite(pdu_buf, bit->pdu_len, 1, drvdata.fp) != 1)
  /external/blktrace/btreplay/
btrecord.c 239 if (fwrite(hdr, sizeof(*hdr), 1, stream->ofp) != 1) {
576 if (fwrite(hdrp, sizeof(struct io_bunch_hdr), 1, stream->ofp) != 1) {
577 fatal(stream->file_name, ERR_SYSCALL, "fwrite(hdr) failed\n");
603 if (fwrite(p, sizeof(struct io_pkt), npkts, stream->ofp) != npkts) {
604 fatal(stream->file_name, ERR_SYSCALL, "fwrite(pkts) failed\n");
  /external/curl/lib/
sendf.c 808 fwrite(s_infotype[type], 2, 1, data->set.err);
809 fwrite(ptr, size, 1, data->set.err);
813 fwrite("\n", 1, 1, data->set.err);
  /external/libavc/test/decoder/
main.c     [all...]
  /external/libchrome/base/
logging.cc 705 ignore_result(fwrite(str_newline.data(), str_newline.size(), 1, stderr));
711 ignore_result(fwrite(str_newline.data(), str_newline.size(), 1, stderr));
737 ignore_result(fwrite(
  /external/libexif/contrib/examples/
write-exif.c 263 if (fwrite(exif_header, exif_header_len, 1, f) != 1) {
277 if (fwrite(exif_data, exif_data_len, 1, f) != 1) {
282 if (fwrite(image_jpg+image_data_offset, image_data_len, 1, f) != 1) {
  /external/libmpeg2/test/decoder/
main.c     [all...]
  /external/libpcap/
sf-pcap.c 635 if (fwrite((char *)&hdr, sizeof(hdr), 1, fp) != 1)
656 (void)fwrite(&sf_hdr, sizeof(sf_hdr), 1, f);
657 (void)fwrite(sp, h->caplen, 1, f);
  /external/python/cpython2/Modules/zlib/
minigzip.c 253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
443 if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
444 error("failed fwrite");
  /external/python/cpython3/Modules/zlib/
minigzip.c 253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
443 if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
444 error("failed fwrite");
  /external/syslinux/gpxe/src/util/
elf2efi.c 621 if ( fwrite ( pe_header, sizeof ( *pe_header ), 1, pe ) != 1 ) {
628 if ( fwrite ( &section->hdr, sizeof ( section->hdr ),
645 ( fwrite ( section->contents, section->hdr.SizeOfRawData,
  /external/toybox/kconfig/
confdata.c 517 fwrite(str, l, 1, out);
758 fwrite(str, l, 1, out);
759 fwrite(str, l, 1, out_h);
  /external/vboot_reference/futility/
vb1_helper.c 464 if (1 != fwrite(part1_data, part1_size, 1, f)) {
474 if (1 != fwrite(part2_data, part2_size, 1, f)) {
541 if (1 != fwrite(g_keyblock, g_keyblock->key_block_size, 1, f)) {
  /external/webrtc/webrtc/modules/audio_processing/aec/
echo_cancellation.c 392 (void)fwrite(&far_buf_size_ms, 2, 1, aecpc->bufFile);
393 (void)fwrite(
617 (void)fwrite(&aecpc->skew, sizeof(aecpc->skew), 1, aecpc->skewFile);
  /external/zlib/src/test/
minigzip.c 253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
443 if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
444 error("failed fwrite");
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ip2k/
allinsn.s 777 .global fwrite
778 fwrite: label
779 fwrite
  /toolchain/binutils/binutils-2.27/zlib/test/
minigzip.c 253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
443 if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
444 error("failed fwrite");

Completed in 888 milliseconds

<<11121314151617181920>>