HomeSort by: relevance | last modified time | path
    Searched defs:nulls (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/test/
test_archive_read_next_header_empty.c 105 static char nulls[512]; variable
117 assertEqualInt(512, fwrite(nulls, 1, 512, f));
test_read_position.c 27 static unsigned char nulls[1000]; variable
75 assert(sizeof(nulls) + 512 + 1024 <= sizeof(buff));
92 == (size_t)archive_write_data(a, nulls, sizeof(nulls)));
test_write_format_pax.c 37 char nulls[1024]; local
100 memset(nulls, 0, sizeof(nulls));
103 assertEqualIntA(a, 1024, archive_write_data(a, nulls, 1024));
215 assertEqualIntA(a, 1024, archive_read_data(a, nulls, 1024));
217 assertEqualInt(0, nulls[j]);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_data_into_fd.c 49 size_t nulls_size, const char *nulls,
68 bytes_written = write(fd, nulls, to_write);
90 char *nulls = NULL; local
98 nulls = calloc(1, nulls_size);
99 if (!nulls) {
109 r = pad_to(a, fd, can_lseek, nulls_size, nulls,
132 r2 = pad_to(a, fd, can_lseek, nulls_size, nulls,
139 free(nulls);
archive_write_private.h 83 /* Utility: Pointer to a block of nulls. */
84 const unsigned char *nulls; member in struct:archive_write
archive_write.c 99 unsigned char *nulls; local
115 /* Initialize a block of nulls for padding purposes. */
117 nulls = calloc(a->null_length, sizeof(unsigned char));
118 if (nulls == NULL) {
122 a->nulls = nulls;
348 int r = __archive_write_output(a, a->nulls, to_write);
717 free((void *)(uintptr_t)(const void *)a->nulls);
  /src/bin/ksh/
shf.c 878 static char nulls[] = "(null %s)"; local
1198 s = nulls;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 501 /// write_zeros - Insert 'NumZeros' nulls.
881 // outs(), errs(), nulls()
898 /// nulls() - This returns a reference to a raw_ostream which discards output.
899 raw_ostream &llvm::nulls() { function in class:llvm

Completed in 73 milliseconds