Home
last modified time | relevance | path

Searched refs:nulls (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_data_into_fd.c49 size_t nulls_size, const char *nulls, in pad_to()
68 bytes_written = write(fd, nulls, to_write); in pad_to()
90 char *nulls = NULL; in archive_read_data_into_fd()
98 nulls = calloc(1, nulls_size); in archive_read_data_into_fd()
99 if (!nulls) { in archive_read_data_into_fd()
109 r = pad_to(a, fd, can_lseek, nulls_size, nulls, in archive_read_data_into_fd()
132 r2 = pad_to(a, fd, can_lseek, nulls_size, nulls, in archive_read_data_into_fd()
139 free(nulls); in archive_read_data_into_fd()
50 pad_to(struct archive * a,int fd,int can_lseek,size_t nulls_size,const char * nulls,int64_t target_offset,int64_t actual_offset) pad_to() argument
91 char *nulls = NULL; archive_read_data_into_fd() local
H A Darchive_write.c99 unsigned char *nulls; in archive_write_new() local
117 nulls = calloc(a->null_length, sizeof(unsigned char)); in archive_write_new()
118 if (nulls == NULL) { in archive_write_new()
122 a->nulls = nulls; in archive_write_new()
348 int r = __archive_write_output(a, a->nulls, to_write); in __archive_write_nulls()
718 free((void *)(uintptr_t)(const void *)a->nulls); in _archive_write_free()
H A Darchive_write_private.h83 /* Utility: Pointer to a block of nulls. */
84 const unsigned char *nulls;
86 const unsigned char *nulls; global() member
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_read_position.c27 static unsigned char nulls[1000];
75 assert(sizeof(nulls) + 512 + 1024 <= sizeof(buff)); in DEFINE_TEST()
92 == (size_t)archive_write_data(a, nulls, sizeof(nulls))); in DEFINE_TEST()
28 static unsigned char nulls[1000]; global() variable
H A Dtest_write_format_pax.c37 char nulls[1024]; in DEFINE_TEST()
100 memset(nulls, 0, sizeof(nulls)); in DEFINE_TEST()
103 assertEqualIntA(a, 1024, archive_write_data(a, nulls, 1024)); in DEFINE_TEST()
215 assertEqualIntA(a, 1024, archive_read_data(a, nulls, 1024)); in DEFINE_TEST()
217 assertEqualInt(0, nulls[j]); in DEFINE_TEST()
38 char nulls[1024]; DEFINE_TEST() local
H A Dtest_archive_read_next_header_empty.c105 static char nulls[512];
117 assertEqualInt(512, fwrite(nulls, 1, 512, f)); in DEFINE_TEST()
106 static char nulls[512]; global() variable
/freebsd/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp80 return llvm::nulls(); in outs()
86 return llvm::nulls(); in errs()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTMerger.h198 bool LoggingEnabled() { return LogStream != &llvm::nulls(); } in LoggingEnabled()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.cpp42 raw_ostream &OSRef = nulls(); in parseCodeRegions()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp47 S = DisAsm.getInstruction(Inst, Size, Data.slice(Index), Index, nulls()); in PrintInsts()
/freebsd/usr.sbin/bsdconfig/share/media/
H A Dtcpip.subr284 local nulls=0 nsegments=$# contains_ipv4_segment=
298 nulls=$(( $nulls + 1 ))
299 if [ $nulls -eq 3 ]; then
300 # Only valid syntax for 3 nulls is `::'
302 elif [ $nulls -eq 2 ]; then
334 if [ $nulls -eq 0 ]; then
351 if [ $nulls -eq 1 ]; then
367 case $nulls in
/freebsd/contrib/file/magic/Magdir/
H A Dtplink14 # test for header padding with nulls
/freebsd/crypto/openssl/doc/man3/
H A DASN1_STRING_length.pod72 is null terminated or does not contain embedded nulls. The actual format
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp976 mc_insn, next_inst_size, raw_insn, inst_addr, llvm::nulls()); in GetSizeOfInstruction()
979 inst_addr, llvm::nulls()); in GetSizeOfInstruction()
1064 m_addr, llvm::nulls()); in EvaluateInstruction()
1067 m_addr, llvm::nulls()); in EvaluateInstruction()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h620 raw_ostream &nulls();
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp395 … llvm::ArrayRef<ImporterSource> Sources) : LogStream(&llvm::nulls()), Target(Target) { in ExternalASTMerger()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp204 if (!DICtx->verify(Opts.Verbose ? outs() : nulls(), in verifyOutput()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp387 : nulls(); in dump()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1350 llvm::nulls()); in PrintMCInst()
1367 m_instr_printer_up->setCommentStream(llvm::nulls()); in CanBranch()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp916 raw_ostream &llvm::nulls() { in nulls() function in llvm
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp733 raw_ostream &stream = Quiet ? nulls() : OS; in verifyObjectFile()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp58 raw_ostream &dbg() { return Quiet ? nulls() : errs(); } in dbg()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp968 LinePrinter Printer(/*Indent=*/2, false, nulls(), Filters); in createScopes()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp753 TI->Disassembler->getInstruction(Inst, Size, SymbolBytes, 0, nulls()); in decodeInst()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1506 DisAsm->getInstruction(Inst, Size, ThisBytes, Index, nulls()); in collectLocalBranchTargets()
1561 DisAsm->getInstruction(Inst, Size, ThisBytes, ThisAddr, nulls()); in addSymbolizer()
2312 DT->InstPrinter->setCommentStream(llvm::nulls()); in disassembleObject()

12