/src/usr.bin/whereis/ |
whereis.c | 64 char *p, *std, path[MAXPATHLEN]; local in function:main 97 if ((std = getenv("PATH")) == NULL) 107 if ((std = malloc(len)) == NULL) 109 if (sysctl(mib, 2, std, &len, NULL, 0) == -1) 126 } else for (p = std; p; ) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_new_delete.cc | 26 // Fake std::nothrow_t and std::align_val_t to avoid including <new>. 27 namespace std { namespace 30 } // namespace std 33 // TODO(alekseys): throw std::bad_alloc instead of dying on OOM. 50 void *operator new(size_t size, std::nothrow_t const&) { 54 void *operator new[](size_t size, std::nothrow_t const&) { 58 void *operator new(size_t size, std::align_val_t align) 61 void *operator new[](size_t size, std::align_val_t align) 64 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const& [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_new_delete.cc | 23 namespace std { namespace 26 } // namespace std 31 // TODO(alekseys): throw std::bad_alloc instead of dying on OOM. 75 void *operator new(__sanitizer::uptr size, std::nothrow_t const&); 76 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { 81 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&); 82 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { 87 void *operator new(__sanitizer::uptr size, std::align_val_t align); 88 void *operator new(__sanitizer::uptr size, std::align_val_t align) { 93 void *operator new[](__sanitizer::uptr size, std::align_val_t align) [all...] |
/src/lib/libc/stdio/ |
findfp.c | 59 #define std(flags, file) { \ macro 98 std(__SRD, STDIN_FILENO), /* stdin */ 99 std(__SWR, STDOUT_FILENO), /* stdout */ 100 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
|
/src/lib/libpam/libpam/ |
pam_std_option.c | 64 int i, j, std, extra, arglen, found; local in function:pam_std_option 66 std = 1; 70 if (std && std_options[i].name == NULL) 71 std = 0; 75 if (std)
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_new_delete.cc | 34 COMMENT_EXPORT("??2@YAPEAX_KAEBUnothrow_t@std@@@Z") // operator new nothrow 41 COMMENT_EXPORT("??2@YAPAXIABUnothrow_t@std@@@Z") // operator new nothrow 66 // Fake std::nothrow_t and std::align_val_t to avoid including <new>. 67 namespace std { namespace 70 } // namespace std 72 // TODO(alekseyshl): throw std::bad_alloc instead of dying on OOM. 111 void *operator new(size_t size, std::nothrow_t const&) 114 void *operator new[](size_t size, std::nothrow_t const&) 117 void *operator new(size_t size, std::align_val_t align [all...] |
/src/tests/lib/libc/stdio/ |
t_fopen.c | 549 FILE *std[2] = { stdin, stdout }; local in function:ATF_TC_BODY 559 for (i = 0; i < __arraycount(std); i++) { 566 f = freopen(path, "w+", std[i]); 570 ATF_REQUIRE(fprintf(std[i], "garbage") == 7);
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_interceptors.cc | 47 namespace std { namespace 197 // TODO(alekseys): throw std::bad_alloc instead of dying on OOM. 228 void *operator new(size_t size, std::nothrow_t const&) 231 void *operator new[](size_t size, std::nothrow_t const&) 234 void *operator new(size_t size, std::align_val_t align) 237 void *operator new[](size_t size, std::align_val_t align) 240 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) 243 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const& [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_allocator_testlib.cc | 14 clang++ -std=c++11 -fno-exceptions -g -fPIC -I. -I../include -Isanitizer \ 192 namespace std { namespace 198 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc"); 199 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc"); 202 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free"); 203 void operator delete[](void *ptr, std::nothrow_t const&) ALIAS("free");
|
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
ubsan_type_hash_itanium.cc | 25 namespace std { namespace 38 class __class_type_info : public std::type_info { 196 std::type_info *TypeInfo;
|
/src/usr.bin/videoctl/ |
videoctl.c | 451 struct v4l2_standard std; local in function:video_print_standards 456 for (std.index = 0; ; std.index++) { 457 error = ioctl(video_fd, VIDIOC_ENUMSTD, &std); 460 printf("info.standard.%u=%s\n", std.index, std.name); 471 std.index = n; 472 error = ioctl(video_fd, VIDIOC_ENUMSTD, &std); 475 printf("info.standard.%u=%s\n", std.index, std.name) [all...] |
/src/sys/arch/evbarm/stand/boot2440/ |
dm9000.c | 166 uint8_t std[6] = { DM9000MAC }; local in function:dm9k_match 182 memcpy(en, std, 6); 183 memcpy(l->en, std, 6);
|
/src/sys/dev/usb/ |
uhcivar.h | 59 struct uhci_soft_td *std; member in union:__anonb7e36d0a010a
|
ohci.c | 465 ohci_soft_td_t *std; local in function:ohci_alloc_std 477 kmem_alloc(sizeof(*std) * OHCI_TD_CHUNK, KM_SLEEP); 492 std = &stds[i]; 493 std->td = KERNADDR(&dma, offs); 494 std->physaddr = DMAADDR(&dma, offs); 495 std->dma = dma; 496 std->offs = offs; 497 std->nexttd = sc->sc_freetds; 499 sc->sc_freetds = std; 503 std = sc->sc_freetds 588 ohci_soft_td_t *std = ox->ox_stds[i]; local in function:ohci_free_stds 1447 ohci_soft_td_t *std, *sdone, *stdnext; local in function:ohci_softintr 1919 ohci_soft_td_t *std; local in function:ohci_hash_find_td 2087 ohci_soft_td_t *std; local in function:ohci_open 2223 ohci_soft_td_t *std; local in function:ohci_close_pipe 2387 ohci_soft_td_t *std; local in function:ohci_abortx 2765 ohci_soft_td_t *std = ox->ox_stds[i]; local in function:ohci_device_ctrl_fini 2854 ohci_soft_td_t *std; local in function:ohci_device_ctrl_start 3047 ohci_soft_td_t *std = ox->ox_stds[i]; local in function:ohci_device_bulk_fini 3242 ohci_soft_td_t *std = ox->ox_stds[i]; local in function:ohci_device_intr_fini [all...] |
uhci.c | 438 uhci_soft_td_t *std; local in function:uhci_init 476 std = uhci_alloc_std(sc); 477 if (std == NULL) 479 std->link.std = NULL; 480 std->td.td_link = htole32(UHCI_PTR_T); 481 std->td.td_status = htole32(0); /* inactive */ 482 std->td.td_token = htole32(0); 483 std->td.td_buffer = htole32(0); 484 usb_syncmem(&std->dma, std->offs, sizeof(std->td) 1486 uhci_soft_td_t *std, *fstd = NULL, *lstd = NULL; local in function:uhci_check_intr 1610 uhci_soft_td_t *std; local in function:uhci_idone 1825 uhci_soft_td_t *std; local in function:uhci_alloc_std 2052 uhci_soft_td_t *std = ux->ux_stds[i]; local in function:uhci_free_stds 2075 uhci_soft_td_t *std, *prev; local in function:uhci_reset_std_chain 2344 uhci_soft_td_t *std; local in function:uhci_abortx 2579 uhci_soft_td_t *std; local in function:uhci_device_ctrl_start 2841 uhci_soft_td_t *std = NULL; local in function:uhci_device_isoc_transfer 2940 uhci_soft_td_t *std; local in function:uhci_device_isoc_abort 3000 uhci_soft_td_t *std, *vstd; local in function:uhci_device_isoc_close 3065 uhci_soft_td_t *std, *vstd; local in function:uhci_setup_isoc [all...] |
/src/sys/dev/ |
video.c | 1000 struct v4l2_standard *std) 1004 std->id = V4L2_STD_NTSC_M; 1005 strlcpy(std->name, "NTSC-M", sizeof(std->name)); 1006 std->frameperiod.numerator = 1001; 1007 std->frameperiod.denominator = 30000; 1008 std->framelines = 525; 1011 std->id = V4L2_STD_UNKNOWN; 1012 strlcpy(std->name, "Unknown", sizeof(std->name)) 1048 struct v4l2_standard std; local in function:video_get_standard 1985 struct v4l2_standard *std; local in function:videoioctl [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_edid.c | 2339 * standard_timing_level - get std. timing level(CVT/GTF/DMT) 2967 struct std_timing *std; local in function:do_standard_modes 2970 std = &data->data.timings[i]; 2971 newmode = drm_mode_std(connector, edid, std); 2981 * add_standard_modes - get std. modes from EDID and add them
|
/src/sys/sys/ |
videoio.h | 2506 v4l2_std_id std; member in struct:v4l2_input 2558 v4l2_std_id std; member in struct:v4l2_output
|