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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/compat/sys/
compat_socket.c 21 int res; variable in typeref:typename:int
23 res = __socket30(domain, type, protocol);
26 return res;
compat_socket.c 21 int res; variable in typeref:typename:int
23 res = __socket30(domain, type, protocol);
26 return res;
compat___ntp_gettime30.c 21 int res; variable in typeref:typename:int
23 res = __ntp_gettime50(&ntv);
29 return (res);
compat_ntp_gettime.c 21 int res; variable in typeref:typename:int
23 res = __ntp_gettime50(&ntv);
29 return (res);
compat___ntp_gettime30.c 21 int res; variable in typeref:typename:int
23 res = __ntp_gettime50(&ntv);
29 return (res);
compat_ntp_gettime.c 21 int res; variable in typeref:typename:int
23 res = __ntp_gettime50(&ntv);
29 return (res);
  /src/lib/libc/uuid/
uuid_compare.c 53 int res; local in function:uuid_compare
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res < 0) ? -1 : 1)
    [all...]
uuid_compare.c 53 int res; local in function:uuid_compare
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res < 0) ? -1 : 1)
    [all...]
  /src/lib/librefuse/refuse/
legacy.c 44 int res = fuse_invalidate_path(fuse, path); local in function:fuse_invalidate
46 switch (res) {
52 return res;
legacy.c 44 int res = fuse_invalidate_path(fuse, path); local in function:fuse_invalidate
46 switch (res) {
52 return res;
  /src/common/lib/libc/quad/
negdi2.c 53 union uu aa, res; local in function:__negdi2
56 res.ul[L] = -aa.ul[L];
57 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
58 return (res.q);
negdi2.c 53 union uu aa, res; local in function:__negdi2
56 res.ul[L] = -aa.ul[L];
57 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
58 return (res.q);
  /src/common/lib/libc/string/
consttime_memequal.c 22 unsigned int res = 0; local in function:__weak_alias
25 res |= *c1++ ^ *c2++;
31 * This is not simply `!res' because although many CPUs support
34 * certain CPUs for `!res'.
36 return (1 & ((res - 1) >> 8));
consttime_memequal.c 22 unsigned int res = 0; local in function:__weak_alias
25 res |= *c1++ ^ *c2++;
31 * This is not simply `!res' because although many CPUs support
34 * certain CPUs for `!res'.
36 return (1 & ((res - 1) >> 8));
  /src/lib/libc/arch/sparc64/gen/
fpgetsticky.c 30 fp_except res; local in function:fpgetsticky
33 res = (x >> 5) & 0x1f;
36 res |= _softfloat_float_exception_flags;
39 return res;
fpgetsticky.c 30 fp_except res; local in function:fpgetsticky
33 res = (x >> 5) & 0x1f;
36 res |= _softfloat_float_exception_flags;
39 return res;
  /src/sys/dev/hpc/
pckbd_encode.c 53 int res; local in function:pckbd_encode
56 res = 0;
61 dataout[res++] = KBR_EXTENDED1;
62 dataout[res++] = (0x1d | updown);
68 dataout[res++] = KBR_EXTENDED0;
72 dataout[res++] = (datain | updown);
74 return (res);
pckbd_encode.c 53 int res; local in function:pckbd_encode
56 res = 0;
61 dataout[res++] = KBR_EXTENDED1;
62 dataout[res++] = (0x1d | updown);
68 dataout[res++] = KBR_EXTENDED0;
72 dataout[res++] = (datain | updown);
74 return (res);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_mac_libcdep.cc 24 void *res = MmapFixedNoAccess(max_address, size_to_mmap, "high gap"); local in function:__sanitizer::RestrictMemoryToMaxAddress
25 CHECK(res != MAP_FAILED);
sanitizer_mac_libcdep.cc 24 void *res = MmapFixedNoAccess(max_address, size_to_mmap, "high gap"); local in function:__sanitizer::RestrictMemoryToMaxAddress
25 CHECK(res != MAP_FAILED);
  /src/usr.bin/nc/
atomicio.c 45 ssize_t res; local in function:atomicio
51 res = (f) (fd, s + pos, n - pos);
52 switch (res) {
65 pos += (size_t)res;
atomicio.c 45 ssize_t res; local in function:atomicio
51 res = (f) (fd, s + pos, n - pos);
52 switch (res) {
65 pos += (size_t)res;
  /src/usr.sbin/ypserv/common/
localhostname.c 51 struct addrinfo *res, hints; local in function:localhostname
77 error = getaddrinfo(hostname, NULL, &hints, &res);
81 strlcpy(buf, res->ai_canonname, buflen);
82 freeaddrinfo(res);
localhostname.c 51 struct addrinfo *res, hints; local in function:localhostname
77 error = getaddrinfo(hostname, NULL, &hints, &res);
81 strlcpy(buf, res->ai_canonname, buflen);
82 freeaddrinfo(res);
  /src/lib/libm/gen/
nan.c 55 NAN_TYPE res; local in function:NAN_FUNCTION
79 res = NAN_STRTOD(nstr, NULL);
83 return res;

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>