HomeSort by: relevance | last modified time | path
    Searched defs:std (Results 1 - 25 of 36) sorted by relevancy

1 2

  /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; ) {
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...]
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...]
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 */
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)
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...]
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);
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...]
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");
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;
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...]
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);
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

Completed in 64 milliseconds

1 2