Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 2002) sorted by relevance

12345678910>>...81

/illumos-gate/usr/src/cmd/stat/arcstat/
H A Darcstat.pl297 $v{"read"} = $v{"hits"} + $v{"miss"};
298 $v{"hit%"} = 100 * ($v{"hits"} / $v{"read"}) if $v{"read"} > 0;
306 $v{"dread"} = $v{"dhit"} + $v{"dmis"};
307 $v{"dh%"} = 100 * ($v{"dhit"} / $v{"dread"}) if $v{"dread"} > 0;
308 $v{"dm%"} = 100 - $v{"dh%"} if $v{"dread"} > 0;
315 $v{"pread"} = $v{"phit"} + $v{"pmis"};
316 $v{"ph%"} = 100 * ($v{"phit"} / $v{"pread"}) if $v{"pread"} > 0;
317 $v{"pm%"} = 100 - $v{"ph%"} if $v{"pread"} > 0;
324 $v{"mread"} = $v{"mhit"} + $v{"mmis"};
325 $v{"mh%"} = 100 * ($v{"mhit"} / $v{"mread"}) if $v{"mread"} > 0;
[all …]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_nv.c38 (((v)->v_flags & MDB_NV_EXTNAME) ? (v)->v_ename : (v)->v_lname)
118 mdb_free(v, NV_SIZE(v)); in nv_var_free()
151 for (v = nv->nv_hash[i]; v != NULL; v = w) { in mdb_nv_destroy()
166 for (v = nv->nv_hash[i]; v != NULL; v = v->v_next) { in mdb_nv_lookup()
205 v = v->v_ndef; in nv_var_overload()
230 for (v = nv->nv_hash[i]; v != NULL; v = v->v_next) { in mdb_nv_insert()
244 v = nv_var_overload(v, w); in mdb_nv_insert()
283 v = v->v_ndef; in nv_var_defn_remove()
438 for (v = v->v_ndef; v != NULL; v = v->v_ndef) { in mdb_nv_defn_iter()
448 return (v->v_disc->disc_get(v)); in mdb_nv_get_value()
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dbuiltin-fp-unop.c13 __builtin_isfinite(v, v); in test_too_many_args()
14 __builtin_isinf(v, v); in test_too_many_args()
15 __builtin_isinf_sign(v, v); in test_too_many_args()
16 __builtin_isnan(v, v); in test_too_many_args()
17 __builtin_isnormal(v, v); in test_too_many_args()
18 __builtin_signbit(v, v); in test_too_many_args()
24 __builtin_isinf(v); in test_non_float()
26 __builtin_isnan(v); in test_non_float()
34 __builtin_isinf(v); in test_float()
36 __builtin_isnan(v); in test_float()
[all …]
/illumos-gate/usr/src/uts/common/io/mlxcx/
H A Dmlxcx_endint.h71 to_be16(uint16_t v) in to_be16() argument
78 to_be24(uint32_t v) in to_be24() argument
84 (v & 0x0000FF) in to_be24()
89 to_be32(uint32_t v) in to_be32() argument
96 to_be64(uint64_t v) in to_be64() argument
130 v->bit_val |= mask; in set_bit8()
135 v->bit_val &= ~mask; in clear_bit8()
144 from_bits8(bits8_t v) in from_bits8() argument
146 return (v.bit_val); in from_bits8()
246 v->bit_val = to_be24(from_be24(v->bit_val) | mask); in set_bit24()
[all …]
/illumos-gate/usr/src/cmd/svc/startd/
H A Dtransition.c89 graph_enable_by_vertex(v, v->gv_flags & GV_ENABLED, 0); in gt_enter_uninit()
96 v->gv_name); in gt_enter_uninit()
133 v->gv_name); in gt_enter_maint()
151 v->gv_name); in gt_enter_maint()
199 v->gv_name); in gt_enter_offline()
205 v->gv_name); in gt_enter_offline()
217 v->gv_name); in gt_enter_offline()
273 v->gv_name); in gt_enter_disabled()
285 v->gv_name); in gt_enter_disabled()
349 v->gv_name); in gt_internal_online_or_degraded()
[all …]
H A Dgraph.c401 v = startd_zalloc(sizeof (*v)); in graph_add_vertex()
433 startd_free(v->gv_name, strlen(v->gv_name) + 1); in graph_remove_vertex()
1643 v->gv_start_f(v); in graph_start_if_satisfied()
1986 for (v = uu_list_first(dgraph); v != NULL; in graph_enable_by_vertex()
1987 v = uu_list_next(dgraph, v)) { in graph_enable_by_vertex()
2683 info.v = v; in set_dependencies()
3815 if (v != NULL && inst_running(v)) in run_sulogin()
3836 v->gv_start_f(v); in run_sulogin()
5016 if (v != milestone && v->gv_refs == 0 && in dgraph_remove_instance()
5611 for (v = uu_list_first(dgraph); v != NULL; v = uu_list_next(dgraph, v)) in dgraph_set_milestone()
[all …]
/illumos-gate/usr/src/lib/libcpc/sparc/
H A Dconf_ultra.c87 {v, 0x0, "Cycle_cnt"}, \
88 {v, 0x1, "Instr_cnt"}, \
90 {v, 0x8, "IC_ref"}, \
91 {v, 0x9, "DC_rd"}, \
92 {v, 0xa, "DC_wr"}, \
93 {v, 0xc, "EC_ref"}, \
94 {v, 0xe, "EC_snoop_inv"}
128 {v, 0x25, "MC_stalls_2"}
227 {v, 0xd, "EC_wb"}, \
228 {v, 0xe, "EC_snoop_cb"}
[all …]
/illumos-gate/usr/src/tools/protocmp/
H A Dproto_list.c80 if ((!v[NAME]) || ((int)strlen(v[NAME]) < 1)) in check_line()
83 if ((!v[SRC]) || ((int)strlen(v[SRC])) < 1) in check_line()
86 if ((!v[PERM]) || ((int)strlen(v[PERM]) < 3) || (!is_num(v[PERM]))) in check_line()
89 if ((!v[OWNR]) || ((int)strlen(v[OWNR]) < 2)) in check_line()
92 if ((!v[GRP]) || ((int)strlen(v[GRP]) < 2)) in check_line()
95 if ((!v[INO]) || (!is_num(v[INO]))) in check_line()
98 if ((!v[LCNT]) || (!is_num(v[LCNT]))) in check_line()
101 if ((!v[CODE]) || ((*v[CODE] != 'f') && (*v[CODE] != 'c') && in check_line()
102 (*v[CODE] != 'd') && (*v[CODE] != 'b') && in check_line()
107 if ((!v[MAJOR]) || ((!is_num(v[MAJOR])) && (*v[MAJOR] != '-'))) in check_line()
[all …]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dinsert.c160 v = sqliteGetVdbe(pParse); in sqliteInsert()
228 sqliteVdbeChangeP2(v, iInitCode, sqliteVdbeCurrentAddr(v)); in sqliteInsert()
233 sqliteVdbeChangeP2(v, iInitCode, sqliteVdbeCurrentAddr(v)); in sqliteInsert()
370 sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); in sqliteInsert()
432 sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); in sqliteInsert()
631 Vdbe *v; in sqliteGenerateConstraintChecks() local
644 assert( v!=0 ); in sqliteGenerateConstraintChecks()
691 sqliteVdbeChangeP2(v, addr, sqliteVdbeCurrentAddr(v)); in sqliteGenerateConstraintChecks()
873 Vdbe *v; in sqliteCompleteInsertion() local
878 assert( v!=0 ); in sqliteCompleteInsertion()
[all …]
H A Dpragma.c130 Vdbe *v; in flagPragma() local
163 Vdbe *v = sqliteGetVdbe(pParse); in sqlitePragma() local
164 if( v==0 ) return; in sqlitePragma()
304 sqliteVdbeAddOp(v, OP_Dup, 0, 0); in sqlitePragma()
424 v = sqliteGetVdbe(pParse); in sqlitePragma()
452 v = sqliteGetVdbe(pParse); in sqlitePragma()
497 sqliteVdbeOp3(v, OP_String, 0, 0, in sqlitePragma()
622 sqliteVdbeChangeP1(v, addr+1, i); in sqlitePragma()
625 sqliteVdbeChangeP2(v, addr+7, i); in sqlitePragma()
674 sqliteVdbeChangeP2(v, jmp2, sqliteVdbeCurrentAddr(v)); in sqlitePragma()
[all …]
H A Ddelete.c141 v = sqliteGetVdbe(pParse); in sqliteDeleteFrom()
142 if( v==0 ){ in sqliteDeleteFrom()
160 sqliteVdbeAddOp(v, OP_Integer, 0, 0); in sqliteDeleteFrom()
177 sqliteVdbeAddOp(v, OP_Rewind, iCur, sqliteVdbeCurrentAddr(v)+2); in sqliteDeleteFrom()
222 end = sqliteVdbeMakeLabel(v); in sqliteDeleteFrom()
229 sqliteVdbeAddOp(v, OP_Dup, 0, 0); in sqliteDeleteFrom()
284 sqliteVdbeAddOp(v, OP_Goto, 0, addr); in sqliteDeleteFrom()
285 sqliteVdbeResolveLabel(v, end); in sqliteDeleteFrom()
297 sqliteVdbeAddOp(v, OP_SetCounts, 0, 0); in sqliteDeleteFrom()
346 sqliteVdbeAddOp(v, OP_Delete, iCur, in sqliteGenerateRowDelete()
[all …]
H A Dupdate.c212 v = sqliteGetVdbe(pParse); in sqliteUpdate()
213 if( v==0 ) goto update_cleanup; in sqliteUpdate()
233 sqliteVdbeAddOp(v, OP_ListWrite, 0, 0); in sqliteUpdate()
242 sqliteVdbeAddOp(v, OP_Integer, 0, 0); in sqliteUpdate()
259 sqliteVdbeAddOp(v, OP_Dup, 0, 0); in sqliteUpdate()
264 sqliteVdbeAddOp(v, OP_Dup, 0, 0); in sqliteUpdate()
347 sqliteVdbeAddOp(v, OP_Dup, 0, 0); in sqliteUpdate()
398 sqliteVdbeAddOp(v, OP_AddImm, 1, 0); in sqliteUpdate()
423 sqliteVdbeChangeP2(v, jumpInst, sqliteVdbeCurrentAddr(v)); in sqliteUpdate()
424 sqliteVdbeAddOp(v, OP_ListReset, 0, 0); in sqliteUpdate()
[all …]
/illumos-gate/usr/src/common/crypto/aes/amd64/
H A Daeskey.c278 k[v(40, (4 * (i)) + 4)] = ss[4] ^= k[v(40, (4 * (i)))]; \
279 k[v(40, (4 * (i)) + 5)] = ss[4] ^= k[v(40, (4 * (i)) + 1)]; \
280 k[v(40, (4 * (i)) + 6)] = ss[4] ^= k[v(40, (4 * (i)) + 2)]; \
281 k[v(40, (4 * (i)) + 7)] = ss[4] ^= k[v(40, (4 * (i)) + 3)]; \
307 k[v(40, (4 * (i)) + 4)] = ss[4] ^= k[v(40, (4 * (i)))]; \
309 k[v(40, (4 * (i)) + 5)] = ss[4] ^= k[v(40, (4 * (i)) + 1)]; \
311 k[v(40, (4 * (i)) + 6)] = ss[4] ^= k[v(40, (4 * (i)) + 2)]; \
313 k[v(40, (4 * (i)) + 7)] = ss[4] ^= k[v(40, (4 * (i)) + 3)]; \
385 k[v(48, (6 * (i)) + 6)] = ss[6] ^= k[v(48, (6 * (i)))]; \
387 k[v(48, (6 * (i)) + 7)] = ss[6] ^= k[v(48, (6 * (i)) + 1)]; \
[all …]
/illumos-gate/usr/src/cmd/fm/fminject/common/
H A Dinj_hash.c58 v->v_next = next; in inj_var_alloc()
59 v->v_key = key; in inj_var_alloc()
62 return (v); in inj_var_alloc()
69 freefn(v, arg); in inj_var_free()
81 for (v = h->h_hash[i]; v != NULL; v = w) { in inj_hash_destroy()
82 w = v->v_next; in inj_hash_destroy()
94 inj_var_t *v; in inj_hash_insert() local
96 for (v = h->h_hash[i]; v != NULL; v = v->v_next) { in inj_hash_insert()
113 inj_var_t *v; in inj_hash_lookup() local
115 for (v = h->h_hash[i]; v != NULL; v = v->v_next) { in inj_hash_lookup()
[all …]
/illumos-gate/usr/src/cmd/eqn/eqnchar.d/
H A Deqnchar2 tdefine ciplus % "\(pl\h'-\w'\(pl\^'u'\v'.3n'\(ci\v'-.3n'" %
16 tdefine =del % "\v'.3m'\z=\v'-.6m'\h'.3n'\s-2\(*D\s+2\v'.3m'" %
20 tdefine oppE %"\s-3\v'.2m'\z\(em\v'-.5m'\z\(em\v'-.5m'\z\(em\v'.55m'\h'.9m'\z\(br\z\(br\v'.25m'\s+3…
22 tdefine incl % "\s-2\(or\v'-.4m'\z\(em\v'.75m'\z\(em\v'.2m'\(em\v'-.55m'\s+2" %
31 tdefine <wig % "\z<\v'.4m'\(ap\v'-.4m'" %
33 tdefine >wig % "\z>\v'.4m'\(ap\v'-.4m'" %
35 tdefine langle % "\v'-.3n'\s-1\z\(sl\s-1\v'1n'\e\v'-1n'\s+2\v'.3n'" %
37 tdefine rangle % "\v'-.3n'\s-2\z\e\s+1\v'1n'\(sl\v'-1n'\s+1\v'.3n'" %
53 tdefine rang % "\v'-.2n'\(or\v'.1n'\(ru\v'.1n'" %
55 tdefine 3dot % "\v'-.7m'\z.\v'.4m'\z.\v'.4m'.\v'-.1m'" %
[all …]
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dstruct_layout.c85 sl_data_t v; in sl_extract_as_word() local
93 return ((Word) v.sld_i8); in sl_extract_as_word()
95 return ((Word) v.sld_i16); in sl_extract_as_word()
97 return ((Word) v.sld_i32); in sl_extract_as_word()
99 return ((Word) v.sld_i64); in sl_extract_as_word()
104 return ((Word) v.sld_ui8); in sl_extract_as_word()
128 sl_data_t v; in sl_extract_as_lword() local
136 return ((Lword) v.sld_i8); in sl_extract_as_lword()
172 sl_data_t v; in sl_extract_as_sword() local
180 return ((Sword)v.sld_i8); in sl_extract_as_sword()
[all …]
/illumos-gate/usr/src/lib/libxcurses/src/libc/mks/
H A Dm_varian.c220 struct variant *v; in __m_setinvariant() local
233 if ((v = getsyntx()) == NULL) in __m_setinvariant()
240 __m_invariant[v->backslash] = '\\'; in __m_setinvariant()
243 __m_invariant[v->right_brace] = '}'; in __m_setinvariant()
244 __m_invariant[v->left_brace] = '{'; in __m_setinvariant()
245 __m_invariant[v->circumflex] = '^'; in __m_setinvariant()
246 __m_invariant[v->tilde] = '~'; in __m_setinvariant()
258 __m_unvariant['\\'] = v->backslash; in __m_setinvariant()
262 __m_unvariant['{'] = v->left_brace; in __m_setinvariant()
263 __m_unvariant['^'] = v->circumflex; in __m_setinvariant()
[all …]
/illumos-gate/usr/src/cmd/stat/kstat/
H A Dkstat.h67 ks_value_t v; \
74 ks_value_t v; \
75 v.i32 = S->N; \
81 ks_value_t v; \
88 ks_value_t v; \
89 v.i64 = S->N; \
95 ks_value_t v; \
115 v.ui64 = V; \
122 v.i32 = V; \
129 v.ui32 = V; \
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dvtoc.h178 v.v_nparts = extv.v_nparts; \
201 extv.v_nparts = v.v_nparts; \
238 #define vtoc32tovtoc(v32, v) \ argument
244 v.v_sanity = v32.v_sanity; \
245 v.v_version = v32.v_version; \
247 v.v_sectorsz = v32.v_sectorsz; \
248 v.v_nparts = v32.v_nparts; \
249 v.v_version = v32.v_version; \
288 #define vtoctovtoc32(v, v32) \ argument
297 v32.v_sectorsz = v.v_sectorsz; \
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dstropt.c93 for (v = s; *t && *t++ == *v; v++); in stropt()
94 if (!*t || isspace(*v) || *v == ',' || *v == '=') in stropt()
96 if (*v == ':' && *(v + 1) == '=') in stropt()
98 v++; in stropt()
105 u = v = s; in stropt()
114 while (*v && !isspace(*v) && *v != '=' && *v != ',') in stropt()
115 if (*v++ == ':' && *v == '=') in stropt()
125 *v = 0; in stropt()
126 t = s = ++v; in stropt()
177 s = v; in stropt()
[all …]
H A Dstrelapsed.c64 v = 0; in strelapsed()
66 v = v * 10 + c - '0'; in strelapsed()
67 v *= n; in strelapsed()
87 v += f; in strelapsed()
99 v *= 60; in strelapsed()
113 v *= 60 * 60; in strelapsed()
123 v *= 60; in strelapsed()
131 v += f; in strelapsed()
136 v += f; in strelapsed()
142 t += v + f; in strelapsed()
[all …]
/illumos-gate/usr/src/compat/bhyve/amd64/machine/
H A Datomic.h57 *p = v; in atomic_store_rel_int()
64 *p = v; in atomic_store_rel_long()
143 return (v); in atomic_fetchadd_int()
152 : "ir" (v), "m" (*p) in atomic_set_int()
162 : "ir" (~v), "m" (*p) in atomic_clear_int()
172 : "ir" (v), "m" (*p) in atomic_subtract_int()
182 : "ir" (v) in atomic_set_long()
191 : "ir" (~v) in atomic_clear_long()
202 : "+r" (v), /* 0 */ in atomic_swap_int()
204 return (v); in atomic_swap_int()
[all …]
/illumos-gate/usr/src/lib/libcpc/i386/
H A Dconf_pentium.c72 #define P5_EVENTS(v) \ argument
73 {v, 0x0, "data_read"}, \
74 {v, 0x1, "data_write"}, \
85 {v, 0xc, "code_read"}, \
89 {v, 0x12, "branches"}, \
90 {v, 0x13, "btb_hits"}, \
103 {v, 0x22, "flops"}, \
108 {v, 0x27, "hw_intrs"}, \
109 {v, 0x28, "data_rw"}, \
110 {v, 0x29, "data_rw_miss"}
[all …]
/illumos-gate/usr/src/lib/libscf/common/
H A Dscf_type.c107 uint32_t v; in valid_utf8() local
128 v = UTF8_VALUE_UPDATE(v, c); in valid_utf8()
362 return ((*v == '0' || *v == '1') && v[1] == 0); in valid_encoded_value()
366 if (strtoull(v, &p, 10) != 0 && *v == '0') in valid_encoded_value()
372 if (strtoll(v, &p, 10) != 0 && *v == '0') in valid_encoded_value()
382 v = p + 1; in valid_encoded_value()
407 return (valid_utf8(v)); in valid_encoded_value()
410 return (valid_uri(v)); in valid_encoded_value()
413 return (valid_fmri(v)); in valid_encoded_value()
421 return (valid_utf8(v)); in valid_encoded_value()
[all …]
/illumos-gate/usr/src/cmd/csh/
H A Dsh.func.c238 v++; in doalias()
350 v++; in doif()
453 if (!*v || *(*v++) != '(') { in doswitch()
456 cp = **v == ')' ? S_ : *v++; in doswitch()
527 if (v[0][0] != '(' || v[blklen(v) - 1][0] != ')') { in doforeach()
532 v = glob(v); in doforeach()
1031 v = glob(v); in echo()
1327 if (*v && eq(*v, S_h)) { in dolimit()
1530 if (*v && eq(*v, S_h)) { in dounlimit()
1630 gv = v = glob(v); in doeval()
[all …]

12345678910>>...81