Home
last modified time | relevance | path

Searched refs:r (Results 226 – 250 of 2227) sorted by relevance

12345678910>>...90

/illumos-gate/usr/src/contrib/ast/src/lib/libast/path/
H A Dpathrepl.c49 register const char* r; in pathrepl_20100601() local
73 r = replace; in pathrepl_20100601()
74 while (p < path && *r) *p++ = *r++; in pathrepl_20100601()
76 else if (*r && p >= path) in pathrepl_20100601()
81 u = t + strlen(r); in pathrepl_20100601()
83 while (*r) *p++ = *r++; in pathrepl_20100601()
/illumos-gate/usr/src/tools/smatch/src/
H A Dexpand.c230 v = l + r; in simplify_int_binop()
235 v = l - r; in simplify_int_binop()
240 v = l & r; in simplify_int_binop()
245 v = l | r; in simplify_int_binop()
250 v = l ^ r; in simplify_int_binop()
258 v = l * r; in simplify_int_binop()
262 if (!r) in simplify_int_binop()
271 v = l / r; in simplify_int_binop()
275 if (!r) in simplify_int_binop()
284 v = l % r; in simplify_int_binop()
[all …]
/illumos-gate/usr/src/cmd/svc/startd/
H A Dgraph.c445 int r; in graph_add_edge() local
592 int r; in graph_walk_recurse() local
1058 int r; in delete_instance_dependencies() local
1085 int r; in graph_insert_vertex_unconfigured() local
1827 int r; in offline_vertex() local
1907 int r; in graph_enable_by_vertex() local
2772 int r; in append_svcs_or_insts() local
2990 int r; in refresh_vertex() local
3880 int r; in single_user_thread() local
3911 assert(r == EALREADY || r == EBUSY); in single_user_thread()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Drecttype.sh51 Rect_t r
52 [[ ${r.area} == 1 ]] || err_exit '${r.area} != 1'
62 unset r s
64 Rect_t -A r
65 r[one]=(ur=(x=4 y=4))
66 (( r[one].area == 16 )) || err_exit 'area of r[one] should be 16'
67 [[ ${r[one].area} == 16 ]] || err_exit '${r[one].area} should be 16'
68 unset r
H A Dpointtype.sh122 A_t r
123 r.b[1]=(y=2)
124 r.b[2]=(y=5)
125 eval s="$r"
126 [[ $r == "$s" ]] || err_exit 'expansion of type containing index array of types is incorrect'
129 unset r s
130 B_t r
131 r.b[1]=(y=2)
132 r.b[2]=(y=5)
133 eval s="$r"
[all …]
/illumos-gate/usr/src/cmd/svc/configd/
H A Dbackend.c476 int r; in backend_is_readonly() local
1203 int r; in backend_check_upgrade() local
1258 int r; in backend_check_readonly() local
1589 int r; in backend_switch_check() local
1739 int r; in backend_switch_recovery() local
1836 int r; in backend_create() local
2028 if (r != SQLITE_OK && r != SQLITE_FULL) { in backend_create()
2112 int r; in backend_tx_begin_common() local
2182 int r; in backend_tx_begin() local
2216 int r; in backend_tx_rollback() local
[all …]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dexpm1l.c132 long double t, r, s, w; in expm1l() local
150 r = (x - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * in expm1l()
152 return (x + (x * r) / (two - r)); in expm1l()
161 r = s - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5)))); in expm1l()
162 r = (s + s) / (two - r); in expm1l()
164 return (w + (w + one) * r); in expm1l()
180 r = (x - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5))))) - two; in expm1l()
181 x = _TBL_expl_hi[j] - ((_TBL_expl_hi[j] * (x + x)) / r - in expm1l()
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/excalibur/frutree/
H A Dsystem-board.info34 PROP Slot uint r 4 0
38 PROP Slot uint r 4 1
55 PROP Slot uint r 4 0
59 PROP Slot uint r 4 1
62 PROP Slot uint r 4 0
66 PROP Slot uint r 4 1
70 PROP Slot uint r 4 2
74 PROP Slot uint r 4 3
78 PROP Slot uint r 4 4
82 PROP Slot uint r 4 5
[all …]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacmacros.h379 #define __ACPI_FIND_LAST_BIT_2(a, r) ((((UINT8) (a)) & 0x02) ? (r)+1 : (r)) argument
380 #define __ACPI_FIND_LAST_BIT_4(a, r) ((((UINT8) (a)) & 0x0C) ? \ argument
382 __ACPI_FIND_LAST_BIT_2 ((a), (r)))
383 #define __ACPI_FIND_LAST_BIT_8(a, r) ((((UINT8) (a)) & 0xF0) ? \ argument
386 #define __ACPI_FIND_LAST_BIT_16(a, r) ((((UINT16) (a)) & 0xFF00) ? \ argument
389 #define __ACPI_FIND_LAST_BIT_32(a, r) ((((UINT32) (a)) & 0xFFFF0000) ? \ argument
401 #define __ACPI_FIND_FIRST_BIT_2(a, r) ((((UINT8) (a)) & 0x01) ? (r) : (r)+1) argument
402 #define __ACPI_FIND_FIRST_BIT_4(a, r) ((((UINT8) (a)) & 0x03) ? \ argument
405 #define __ACPI_FIND_FIRST_BIT_8(a, r) ((((UINT8) (a)) & 0x0F) ? \ argument
408 #define __ACPI_FIND_FIRST_BIT_16(a, r) ((((UINT16) (a)) & 0x00FF) ? \ argument
[all …]
/illumos-gate/usr/src/tools/onbld/Checks/
H A DComments.py45 bugre = re.compile(r'^(\d{2,7}) (.*)$')
72 bugnospcre = re.compile(r'^(\d{2,7})([^ ].*)')
73 ignorere = re.compile(r'^(' +
74 r'Portions contributed by|' +
75 r'Contributed by|' +
76 r'Reviewed[ -]by|' +
77 r'Approved[ -]by|' +
78 r'back[ -]?out)' +
79 r'[: ]')
164 if not re.search(r'^' + re.escape(synopsis) +
[all …]
/illumos-gate/usr/src/cmd/bc/
H A Dlib.b.data35 r = ibase
72 ibase = r
81 r = ibase
85 ibase = r
131 r = ibase
161 auto t, r
162 r = ibase
168 ibase = r
175 r = ibase
179 ibase = r
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dshift-undef-long.c3 unsigned r = 0; in very_big_shift() local
4 r |= a << (0ULL ^ ~0U); in very_big_shift()
5 r |= a << ((( signed long long) ~0U) + 1); in very_big_shift()
6 r |= a << (((unsigned long long) ~0U) + 1); in very_big_shift()
7 r |= a << (~((unsigned long long) ~0U)); in very_big_shift()
8 return r; in very_big_shift()
/illumos-gate/usr/src/uts/common/os/
H A Ddkioc_free_util.c159 int r = 0; in dfl_iter() local
172 r = SET_ERROR(EINVAL); in dfl_iter()
178 r = SET_ERROR(EINVAL); in dfl_iter()
184 r = SET_ERROR(EINVAL); in dfl_iter()
190 r = SET_ERROR(EINVAL); in dfl_iter()
200 r = SET_ERROR(EINVAL); in dfl_iter()
251 if ((r = split_extent(dfl, dfi, i, func, arg, in dfl_iter()
335 return (r); in dfl_iter()
421 int r = 0; in process_range() local
485 int r; in split_extent() local
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/hash/
H A Dhashlib.h84 #define HASH(r,n,h) if (r->local->hash) h = r->namesize ? (*r->local->hash)(n, r->namesize) : (*r->… argument
89 if (r->namesize)\
91 register const char* _hash_s2 = _hash_s1 + r->namesize;\
/illumos-gate/usr/src/lib/libm/common/m9x/
H A D__fex_i386.c1240 fex_numeric_t r; in __fex_st_result() local
1351 r = info->res; in __fex_st_result()
1409 switch (r.type) { in __fex_st_result()
1445 switch (r.type) { in __fex_st_result()
1481 switch (r.type) { in __fex_st_result()
1517 switch (r.type) { in __fex_st_result()
1588 switch (r.type) { in __fex_st_result()
1590 r.val.q = (long double) r.val.i; in __fex_st_result()
1594 r.val.q = (long double) r.val.l; in __fex_st_result()
1598 r.val.q = (long double) r.val.f; in __fex_st_result()
[all …]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dfgetwc.c113 wint_t r; in fgetwc() local
118 r = _fgetwc_unlocked_l(fp, loc); in fgetwc()
121 return (r); in fgetwc()
132 wint_t r; in __fgetwc_xpg5() local
139 r = _fgetwc_unlocked_l(fp, loc); in __fgetwc_xpg5()
142 return (r); in __fgetwc_xpg5()
149 wint_t r; in fgetwc_l() local
154 r = _fgetwc_unlocked_l(fp, loc); in fgetwc_l()
157 return (r); in fgetwc_l()
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_lookup.h23 # define SIOCLOOKUPADDTABLE _IOWR(r, 60, struct iplookupop)
24 # define SIOCLOOKUPDELTABLE _IOWR(r, 61, struct iplookupop)
25 # define SIOCLOOKUPSTAT _IOWR(r, 64, struct iplookupop)
26 # define SIOCLOOKUPSTATW _IOW(r, 64, struct iplookupop)
27 # define SIOCLOOKUPFLUSH _IOWR(r, 65, struct iplookupflush)
28 # define SIOCLOOKUPADDNODE _IOWR(r, 67, struct iplookupop)
29 # define SIOCLOOKUPADDNODEW _IOW(r, 67, struct iplookupop)
30 # define SIOCLOOKUPDELNODE _IOWR(r, 68, struct iplookupop)
31 # define SIOCLOOKUPDELNODEW _IOW(r, 68, struct iplookupop)
/illumos-gate/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdcmore.c91 register int r; local
114 r = -1;
116 r = -(SIGINT + 1);
118 r = -(SIGQUIT + 1);
120 r = '\n';
122 r = c;
139 return r;
161 register int r; local
214 if (r == '/' || r == 'n')
216 if (r == '/')
[all …]
/illumos-gate/usr/src/lib/libgen/common/
H A Dstrtrns.c40 char *r; in strtrns() local
43 for (r = result; *r = *str++; r++) in strtrns()
45 if (*r == *o++) { in strtrns()
46 *r = new[o - old -1]; in strtrns()
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/
H A Dwpa_enc.c33 uint8_t *a, *r, b[16]; in aes_wrap() local
38 r = cipher + 8; in aes_wrap()
42 (void) memcpy(r, plain, 8 * n); in aes_wrap()
55 r = cipher + 8; in aes_wrap()
58 (void) memcpy(b + 8, r, 8); in aes_wrap()
62 (void) memcpy(r, b + 8, 8); in aes_wrap()
63 r += 8; in aes_wrap()
84 uint8_t a[8], *r, b[16]; in aes_unwrap() local
90 r = plain; in aes_unwrap()
104 r = plain + (n - 1) * 8; in aes_unwrap()
[all …]
/illumos-gate/usr/src/cmd/sendmail/util/
H A Dsmrsh.c146 register char *r; local
371 r = strpbrk(p, specialbuf);
372 if (r == NULL)
378 if (*r == ';')
380 addcmd(p, false, r - p + 1);
381 q = r + 1;
385 if ((*r == '&' && *(r + 1) == '&') ||
386 (*r == '|' && *(r + 1) == '|'))
388 addcmd(p, false, r - p + 2);
389 q = r + 2;
[all …]
/illumos-gate/usr/src/lib/libm/common/C/
H A Datan.c127 double y, z, r, p, s; in atan() local
157 r = one / x; in atan()
164 z = r * r; in atan()
165 s = p1 * r; in atan()
166 return (y + ((p - r) - ((s * z) * in atan()
171 z = r * r; in atan()
172 return (y + (p - ((q1 * r) * (q4 + z)) * in atan()
175 return (y + (p - r)); in atan()
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/ents/frudr/
H A Dfru_SC_data.info79 PROP Class string r 0 "led"
83 PROP Class string r 0 "led"
87 PROP Class string r 0 "led"
102 PROP Class string r 0 "led"
106 PROP Class string r 0 "led"
110 PROP Class string r 0 "led"
125 PROP Class string r 0 "led"
129 PROP Class string r 0 "led"
133 PROP Class string r 0 "led"
148 PROP Class string r 0 "led"
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/targets/
H A Dses_safte.c157 int r, i; in safte_softc_init() local
192 return (r); in safte_softc_init()
209 r = 0; in safte_softc_init()
383 oid = r = 0; in safte_rdstat()
445 r++; in safte_rdstat()
514 r++; in safte_rdstat()
566 r++; in safte_rdstat()
597 r++; in safte_rdstat()
629 r++; in safte_rdstat()
704 for (r = i = 0; i < cc->Nslots; i++, r += 4) { in safte_rdstat()
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_D_cplx_div.c90 double a, b, c, d, r; in _D_cplx_div() local
119 r = 0.0; in _D_cplx_div()
135 ((double *)&v)[0] = (a * c + b * d) * r; in _D_cplx_div()
136 ((double *)&v)[1] = (b * c - a * d) * r; in _D_cplx_div()
170 r = 1.0; in _D_cplx_div()
176 r = inf.d; in _D_cplx_div()
178 ((double *)&v)[0] = (a * c + b * d) * r; in _D_cplx_div()
179 ((double *)&v)[1] = (b * c - a * d) * r; in _D_cplx_div()
242 r = 1.0 / (c * c + d * d); in _D_cplx_div()
246 ((double *)&v)[0] = (a * c + b * d) * r; in _D_cplx_div()
[all …]

12345678910>>...90