| /freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/ |
| H A D | MachO.h | 523 uint32_t cmdsize; member 528 uint32_t cmdsize; member 542 uint32_t cmdsize; member 592 uint32_t cmdsize; member 605 uint32_t cmdsize; member 611 uint32_t cmdsize; member 617 uint32_t cmdsize; member 623 uint32_t cmdsize; member 629 uint32_t cmdsize; member 636 uint32_t cmdsize; member [all …]
|
| /freebsd-12.1/sys/contrib/octeon-sdk/ |
| H A D | cvmx-hfa.c | 84 int cmdsize; in cvmx_hfa_initialize() local 86 cmdsize = ((CVMX_FPA_DFA_POOL_SIZE - 8) / sizeof (cvmx_dfa_command_t)) * in cvmx_hfa_initialize() 89 CVMX_FPA_DFA_POOL, cmdsize + 8); in cvmx_hfa_initialize() 96 control.s.size = cmdsize / sizeof(cvmx_dfa_command_t); in cvmx_hfa_initialize()
|
| /freebsd-12.1/usr.bin/apply/ |
| H A D | apply.c | 70 size_t cmdsize; in main() local 140 cmdsize = strlen(argv[0]) + 9 * (sizeof(" %1") - 1) + 1; in main() 141 if ((cmd = malloc(cmdsize)) == NULL) in main() 143 strlcpy(cmd, argv[0], cmdsize); in main() 151 strlcat(cmd, buf, cmdsize); in main()
|
| /freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ |
| H A D | MachONormalizedFileBinaryWriter.cpp | 621 seg->cmdsize = sizeof(typename T::command) in writeSingleSegmentLoadCommand() 623 uint8_t *next = lc + seg->cmdsize; in writeSingleSegmentLoadCommand() 675 uint8_t *next = lc + cmd->cmdsize; in writeSegmentLoadCommands() 693 cmd->cmdsize = sizeof(typename T::command) in writeSegmentLoadCommands() 695 uint8_t *next = lc + cmd->cmdsize; in writeSegmentLoadCommands() 779 st->cmdsize = sizeof(symtab_command); in writeLoadCommands() 832 dc->cmdsize = size; in writeLoadCommands() 866 st->cmdsize = sizeof(symtab_command); in writeLoadCommands() 911 dl->cmdsize = size; in writeLoadCommands() 959 dc->cmdsize = size; in writeLoadCommands() [all …]
|
| H A D | MachONormalizedFileBinaryReader.cpp | 71 if ( (p + slc->cmdsize) > lcRange.end() ) in forEachLoadCommand() 74 if (func(slc->cmd, slc->cmdsize, p)) in forEachLoadCommand() 77 p += slc->cmdsize; in forEachLoadCommand()
|
| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 190 if (CmdOrErr->cmdsize < 8) in getLoadCommandInfo() 723 if (D.dylib.name >= D.cmdsize) in checkDylibCommand() 734 if (i >= D.cmdsize) in checkDylibCommand() 769 if (D.name >= D.cmdsize) in checkDyldCommand() 780 if (i >= D.cmdsize) in checkDyldCommand() 834 if (Load.C.cmdsize != in parseBuildVersionCommand() 859 if (R.path >= R.cmdsize) in checkRpathCommand() 870 if (i >= R.cmdsize) in checkRpathCommand() 943 if (PathOffset >= Load.C.cmdsize) in checkSubCommand() 954 if (i >= Load.C.cmdsize) in checkSubCommand() [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | main.c | 139 int cmdsize; in captured_main() local 179 cmdsize = 1; in captured_main() 180 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg)); in captured_main() 387 if (ncmd >= cmdsize) in captured_main() 389 cmdsize *= 2; in captured_main() 391 cmdsize * sizeof (*cmdarg)); in captured_main()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 274 uint64_t cmdsize; member 342 Segment.cmdsize = SC.cmdsize; in getSegment() 356 Segment.cmdsize = SC.cmdsize; in getSegment() 691 if (Dl.dylib.name < Dl.cmdsize) { in printNeededLibraries() 755 W.printNumber("Size", BVC.cmdsize); in printMachOVersionMin() 768 W.printNumber("Size", VMC.cmdsize); in printMachOVersionMin() 825 W.printNumber("Size", MOSegment.cmdsize); in printMachOSegment() 859 W.printNumber("Size", LOLC.cmdsize); in printMachOLinkerOptions() 861 uint64_t DataSize = LOLC.cmdsize - sizeof(MachO::linker_option_command); in printMachOLinkerOptions()
|
| /freebsd-12.1/stand/efi/boot1/ |
| H A D | boot1.c | 197 size_t bufsize, loadersize, cmdsize; in try_boot() local 227 cmdsize = 0; in try_boot() 232 cmdsize = bufsize + 1; in try_boot() 233 cmd = malloc(cmdsize); in try_boot() 261 loaded_image->LoadOptionsSize = cmdsize; in try_boot()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 903 if (dl.dylib.name < dl.cmdsize) { in PrintDylibs() 8134 outs() << " cmdsize " << cmdsize; in PrintSegmentCommand() 8135 if (cmdsize != expected_cmdsize) in PrintSegmentCommand() 8349 outs() << " cmdsize " << st.cmdsize; in PrintSymtabLoadCommand() 8614 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand() 8645 if (rpath.path >= rpath.cmdsize) in PrintRpathLoadCommand() 8721 if (bd.cmdsize != in PrintBuildVersionLoadCommand() 8858 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand() 8906 if (sub.client < sub.cmdsize) { in PrintSubClientCommand() 9202 const char *end = Ptr + t.cmdsize; in PrintThreadCommand() [all …]
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_procmaps_mac.cc | 187 layout_data.current_load_cmd_addr += ((const load_command *)lc)->cmdsize; in NextSegmentLoad() 266 return (const load_command *)((const char *)lc + lc->cmdsize); in NextCommand()
|
| /freebsd-12.1/sys/dev/liquidio/base/ |
| H A D | lio_request_manager.c | 344 uint8_t *iqptr, cmdsize; in __lio_copy_cmd_into_iq() local 346 cmdsize = ((iq->iqcmd_64B) ? 64 : 32); in __lio_copy_cmd_into_iq() 347 iqptr = iq->base_addr + (cmdsize * iq->host_write_index); in __lio_copy_cmd_into_iq() 349 memcpy(iqptr, cmd, cmdsize); in __lio_copy_cmd_into_iq()
|
| /freebsd-12.1/contrib/diff/src/ |
| H A D | sdiff.c | 612 size_t cmdsize = 1; in main() local 617 cmdsize += quote_system_arg (0, diffargv[i]) + 1; in main() 618 command = p = xmalloc (cmdsize); in main()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | MachOYAML.cpp | 247 IO.mapRequired("cmdsize", LoadCommand.Data.load_command_data.cmdsize); in mapping()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFContext.cpp | 82 if (LC.C.cmdsize < sizeof(UUID) + sizeof(LC.C)) { in dumpUUID()
|