/illumos-gate/usr/src/lib/libc/port/fp/ |
H A D | muldi3.c | 109 #define v1 v.ul[H] in ___muldi3() macro 126 if (u1 == 0 && v1 == 0) { in ___muldi3() 146 if (v0 >= v1) in ___muldi3() 147 vdiff = v0 - v1; in ___muldi3() 149 vdiff = v1 - v0, negmid ^= 1; in ___muldi3() 152 high = u1 * v1; in ___muldi3() 164 #undef v1 in ___muldi3() 188 ulong_t u1, u0, v1, v0, udiff, vdiff, high, mid, low; in __lmulq() local 195 v1 = HHALF(v); in __lmulq() 201 if (u1 == 0 && v1 == 0) in __lmulq() [all …]
|
H A D | qdivrem.c | 85 digit v1, v2; in ___qdivrem() local 192 v1 = v[1]; /* for D3 -- note that v[1..n] are constant */ in ___qdivrem() 208 if (uj0 == v1) { in ___qdivrem() 214 qhat = n / v1; in ___qdivrem() 215 rhat = n % v1; in ___qdivrem() 220 if ((rhat += v1) >= B) in ___qdivrem()
|
/illumos-gate/usr/src/lib/smbclnt/libfknsmb/common/ |
H A D | fake_sdt.c | 28 fknsmb_dtrace1(const char *n, long v1) in fknsmb_dtrace1() argument 36 " 0x%lx\n", n, v1); in fknsmb_dtrace1() 41 fknsmb_dtrace2(const char *n, long v1, long v2) in fknsmb_dtrace2() argument 45 " 0x%lx, 0x%lx\n", n, v1, v2); in fknsmb_dtrace2() 50 fknsmb_dtrace3(const char *n, long v1, long v2, long v3) in fknsmb_dtrace3() argument 54 " 0x%lx, 0x%lx, 0x%lx\n", n, v1, v2, v3); in fknsmb_dtrace3()
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | view.test | 32 CREATE VIEW v1 AS SELECT a,b FROM t1; 33 SELECT * FROM v1 ORDER BY a; 39 SELECT * FROM v1 ORDER BY a; 41 } {1 {no such table: v1}} 44 CREATE VIEW v1 AS SELECT a,b FROM t1; 45 SELECT * FROM v1 ORDER BY a; 52 SELECT * FROM v1 ORDER BY a; 57 DROP VIEW v1; 58 SELECT * FROM v1 ORDER BY a; 60 } {1 {no such table: v1}} [all …]
|
H A D | auth.test | 579 catchsql {CREATE VIEW v1 AS SELECT a+1,b+1 FROM t2} 583 } {v1 {} main {}} 595 catchsql {CREATE VIEW v1 AS SELECT a+1,b+1 FROM t2} 599 } {v1 {} main {}} 612 catchsql {CREATE TEMPORARY VIEW v1 AS SELECT a+1,b+1 FROM t2} 616 } {v1 {} temp {}} 628 catchsql {CREATE TEMPORARY VIEW v1 AS SELECT a+1,b+1 FROM t2} 632 } {v1 {} temp {}} 644 catchsql {CREATE VIEW v1 AS SELECT a+1,b+1 FROM t2} 656 catchsql {CREATE VIEW v1 AS SELECT a+1,b+1 FROM t2} [all …]
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/ |
H A D | hash_kef_generic.c | 20 iovec_t v1, v2; in k5_ef_hash() local 55 v1.iov_base = (void *)input[i].data; in k5_ef_hash() 56 v1.iov_len = input[i].length; in k5_ef_hash() 60 d1.cd_raw = v1; in k5_ef_hash() 93 iovec_t v1, v2; in k5_ef_mac() local 125 v1.iov_base = (void *)input->data; in k5_ef_mac() 126 v1.iov_len = input->length; in k5_ef_mac() 131 d1.cd_raw = v1; in k5_ef_mac()
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | Statistic.java | 267 Double v1 = getDoubleValue(); in add() local 270 return (new DoubleStatistic(new Double(v1.doubleValue() + in add() 277 Double v1 = getDoubleValue(); in subtract() local 280 return (new DoubleStatistic(new Double(v1.doubleValue() - in subtract() 355 Long v1 = getLongValue(); in add() local 358 return (new LongStatistic(new Long(v1.longValue() + in add() 365 Long v1 = getLongValue(); in subtract() local 368 return (new LongStatistic(new Long(v1.longValue() - in subtract() 442 UnsignedInt64 v1 = getUnsignedInt64Value(); in add() local 446 new UnsignedInt64(v1.add(v2)), in add() [all …]
|
/illumos-gate/usr/src/cmd/ssh/etc/ |
H A D | sshd_config | 10 # 1 and 2. It is recommended due to security weaknesses in the v1 protocol 11 # that sites run only v2 if possible. Support for v1 is provided to help sites 12 # with existing ssh v1 clients/servers to transition. 13 # Support for v1 may not be available in a future release of Solaris. 15 # To enable support for v1 an RSA1 key must be created with ssh-keygen(1). 17 # do not already exist, RSA1 keys for protocol v1 are not automatically created. 24 # Both v1 and v2 (not recommended) 27 # Only v1 (not recommended) 123 # SSH protocol v1 specific options 125 # The following options only apply to the v1 protocol and provide [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lobject.c | 70 lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2) { in luaO_arith() argument 72 case LUA_OPADD: return luai_numadd(NULL, v1, v2); in luaO_arith() 73 case LUA_OPSUB: return luai_numsub(NULL, v1, v2); in luaO_arith() 74 case LUA_OPMUL: return luai_nummul(NULL, v1, v2); in luaO_arith() 75 case LUA_OPDIV: return luai_numdiv(NULL, v1, v2); in luaO_arith() 76 case LUA_OPMOD: return luai_nummod(NULL, v1, v2); in luaO_arith() 77 case LUA_OPPOW: return luai_numpow(NULL, v1, v2); in luaO_arith() 78 case LUA_OPUNM: return luai_numunm(NULL, v1); in luaO_arith()
|
/illumos-gate/usr/src/lib/libmp/common/ |
H A D | mdiv.c | 124 m_trq(short v1, short v2, short u1, short u2, short u3) in m_trq() argument 131 if (u1 == v1) { in m_trq() 134 d = (short)(c1 / v1); in m_trq() 137 x1 = c1 - v1 * d; in m_trq() 142 (void) printf("mtrq %d %d %d %d %d %d\n", v1, v2, u1, u2, u3, (d+1)); in m_trq() 157 short v1; in m_div() local 195 v1 = v.val[n - 1]; in m_div() 200 qq = m_trq(v1, v2, uval[j + n], uval[j + n - 1], in m_div()
|
/illumos-gate/usr/src/lib/librstp/common/ |
H A D | vector.c | 63 STP_VECT_compare_vector (PRIO_VECTOR_T* v1, PRIO_VECTOR_T* v2) in STP_VECT_compare_vector() argument 67 bridcmp = STP_VECT_compare_bridge_id (&v1->root_bridge, &v2->root_bridge); in STP_VECT_compare_vector() 71 bridcmp = v1->root_path_cost - v2->root_path_cost; in STP_VECT_compare_vector() 74 bridcmp = STP_VECT_compare_bridge_id (&v1->design_bridge, &v2->design_bridge); in STP_VECT_compare_vector() 77 bridcmp = v1->design_port - v2->design_port; in STP_VECT_compare_vector() 80 return v1->bridge_port - v2->bridge_port; in STP_VECT_compare_vector()
|
/illumos-gate/usr/src/lib/libnisdb/ |
H A D | ldap_val.c | 898 explodeValues(__nis_value_t *v1, __nis_value_t *v2) { in explodeValues() argument 904 if (v1 == 0 || v1->numVals <= 0) in explodeValues() 907 return (cloneValue(v1, 1)); in explodeValues() 919 if (!v1->repeat && !v2->repeat) in explodeValues() 920 nv = v1->numVals * v2->numVals; in explodeValues() 921 else if (v1->repeat && !v2->repeat) in explodeValues() 923 else if (!v1->repeat && v2->repeat) in explodeValues() 924 nv = v1->numVals; in explodeValues() 937 if (!v1->repeat && !v2->repeat) { in explodeValues() 938 for (i1 = 0, n = 0; i1 < v1->numVals; i1++) { in explodeValues() [all …]
|
/illumos-gate/usr/src/uts/common/io/audio/drv/audiols/ |
H A D | audiols.c | 776 unsigned int r, v1, v2; in audigyls_configure_mixer() local 790 v1 = 255 - SCALE(dev->controls[CTL_CENTER].val, 8); in audigyls_configure_mixer() 792 r = (v1 << 8) | v2; in audigyls_configure_mixer() 803 v1 = dev->controls[CTL_RECORDVOL].val; in audigyls_configure_mixer() 809 (void) ac97_control_set(dev->ac97_recgain, v1); in audigyls_configure_mixer() 816 r = 0xffff - audigyls_stereo_scale(v1, 8); in audigyls_configure_mixer() 842 v1 = RECSEL_AC97; /* Audigy LS */ in audigyls_configure_mixer() 855 v1 = RECSEL_I2SIN; /* SB 7.1 value */ in audigyls_configure_mixer() 862 v1 = RECSEL_I2SOUT; in audigyls_configure_mixer() 863 r |= (v1 << 28) | (v1 << 24) | (v1 << 20) | (v1 << 16) | v1; in audigyls_configure_mixer() [all …]
|
/illumos-gate/usr/src/lib/libdwarf/common/ |
H A D | dwarf_macro.c | 375 Dwarf_Unsigned v1 = 0; in dwarf_get_macro_details() local 398 DECODE_LEB128_UWORD_CK(pnext,v1,dbg,error, in dwarf_get_macro_details() 400 pdmd->dmd_lineno = v1; in dwarf_get_macro_details() 432 DECODE_LEB128_UWORD_CK(pnext,v1,dbg,error, in dwarf_get_macro_details() 434 pdmd->dmd_lineno = v1; in dwarf_get_macro_details() 443 DECODE_LEB128_UWORD_CK(pnext,v1,dbg,error, in dwarf_get_macro_details() 445 pdmd->dmd_fileindex = v1; in dwarf_get_macro_details() 450 fileindex = v1; in dwarf_get_macro_details()
|
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | j1.c | 201 static const GENERIC v1[5] = { variable 278 v = v1[0]+z*(v1[1]+z*(v1[2]+z*(v1[3]+z*v1[4]))); in y1()
|
/illumos-gate/usr/src/test/libc-tests/tests/qsort/ |
H A D | qsort_test.c | 59 int (*cmp)(const void *v1, const void *v2); 60 int (*cmp_checked)(const void *v1, const void *v2); 75 cmp_i(const void *v1, const void *v2) in cmp_i() argument 77 const int a = *(const int *)v1; in cmp_i() 84 cmp_checked_i(const void *v1, const void *v2) in cmp_checked_i() argument 86 const int a = *(const int *)v1; in cmp_checked_i() 96 cmp_ll(const void *v1, const void *v2) in cmp_ll() argument 98 const long long a = *(const long long *)v1; in cmp_ll() 105 cmp_checked_ll(const void *v1, const void *v2) in cmp_checked_ll() argument 107 const long long a = *(const long long *)v1; in cmp_checked_ll() [all …]
|
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | ProbeData.java | 521 compareUnsigned(Comparable v1, Comparable v2) in compareUnsigned() argument 525 if (v1 instanceof Integer) { in compareUnsigned() 526 int i1 = Integer.class.cast(v1); in compareUnsigned() 529 } else if (v1 instanceof Long) { in compareUnsigned() 530 long i1 = Long.class.cast(v1); in compareUnsigned() 534 cmp = v1.compareTo(v2); in compareUnsigned() 559 Comparable v1 = Comparable.class.cast(o1); in compareRecords() local 561 cmp = v1.compareTo(v2); // compare signed values in compareRecords() 565 Comparable v1 = Comparable.class.cast(r1); in compareRecords() local 567 cmp = v1.compareTo(v2); in compareRecords()
|
/illumos-gate/usr/src/boot/libsa/ |
H A D | qdivrem.c | 85 digit v1, v2; in __udivmoddi4() local 192 v1 = v[1]; /* for D3 -- note that v[1..n] are constant */ in __udivmoddi4() 208 if (uj0 == v1) { in __udivmoddi4() 214 qhat = nn / v1; in __udivmoddi4() 215 rhat = nn % v1; in __udivmoddi4() 220 if ((rhat += v1) >= B) in __udivmoddi4()
|
/illumos-gate/usr/src/lib/libm/common/complex/ |
H A D | cpow.c | 155 double b[4], t1, t2, t3, t4, w1, w2, u1, v1, x1, y1; in cpow() local 263 v1 = v; in cpow() 265 ((int *) &v1)[LOWORD] &= 0xf8000000; in cpow() 278 b[2] = v1 * x1; in cpow() 279 b[3] = (v - v1) * x1 + v * x2; in cpow() 304 b[2] = -v1 * y1; in cpow() 305 b[3] = (v1 - v) * y1 - v * y2; in cpow()
|
H A D | cpowl.c | 110 long double t1, t2, t3, t4, x1, x2, y1, y2, u1, v1, b[4], w1, w2; in cpowl() local 214 v1 = v; HALF(v1); in cpowl() 225 b[2] = v1 * x1; in cpowl() 226 b[3] = (v - v1) * x1 + v * x2; in cpowl() 247 b[2] = -v1 * y1; in cpowl() 248 b[3] = (v1 - v) * y1 - v * y2; in cpowl()
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | fsys_reiserfs.c | 170 struct offset_v1 v1; member 218 ? (ih)->ih_key.u.v1.k_offset \ 222 ? (ih)->ih_key.u.v1.k_uniqueness == V1_##type \ 739 INFO->current_ih->ih_key.u.v1.k_offset, in next_key() 740 INFO->current_ih->ih_key.u.v1.k_uniqueness, in next_key() 803 INFO->current_ih->ih_key.u.v1.k_offset, in next_key() 804 INFO->current_ih->ih_key.u.v1.k_uniqueness, in next_key() 848 && (key->u.v1.k_offset in search_stat() 849 | key->u.v1.k_uniqueness) > 0)))) in search_stat() 870 && ih->ih_key.u.v1.k_offset == 0 in search_stat() [all …]
|
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/ |
H A D | chem.awk | 388 function dblring(v, d, v1, v2) { # should canonicalize to i,i+1 mod v 391 v1 = substr($cf,1,1) 393 if (v2 == v1+1 || v1 == v && v2 == 1) # e.g., 2,3 or 5,1 394 dbl[v1] = d 395 else if (v1 == v2+1 || v2 == v && v1 == 1) # e.g., 3,2 or 1,5
|
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | util.c | 558 LONGDOUBLE_TYPE v1 = 0.0; in sqliteAtoF() local 566 v1 = v1*10.0 + (*z - '0'); in sqliteAtoF() 573 v1 = v1*10.0 + (*z - '0'); in sqliteAtoF() 577 v1 /= divisor; in sqliteAtoF() 599 v1 /= scale; in sqliteAtoF() 601 v1 *= scale; in sqliteAtoF() 605 return sign<0 ? -v1 : v1; in sqliteAtoF()
|
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_user/misc/ |
H A D | zpool_upgrade_001_neg.ksh | 55 log_mustnot zpool upgrade v1-pool 59 RESULT=$(zpool upgrade | grep v1-pool)
|
H A D | cleanup.ksh | 40 if poolexists v1-pool 42 log_must zpool destroy v1-pool
|