/titanic_44/usr/src/lib/libc/port/fp/ |
H A D | ashrdi3.c | 46 union uu aa; in ___ashrdi3() local 48 aa.q = a; in ___ashrdi3() 59 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in ___ashrdi3() 60 aa.ul[L] = shift >= QUAD_BITS ? s : in ___ashrdi3() 61 aa.sl[H] >> (shift - LONG_BITS); in ___ashrdi3() 62 aa.ul[H] = s; in ___ashrdi3() 64 aa.ul[L] = (aa.ul[L] >> shift) | in ___ashrdi3() 65 (aa.ul[H] << (LONG_BITS - shift)); in ___ashrdi3() 66 aa.sl[H] >>= shift; in ___ashrdi3() 68 return (aa.q); in ___ashrdi3()
|
H A D | ashldi3.c | 47 union uu aa; in ___ashldi3() local 49 aa.q = a; in ___ashldi3() 51 aa.ul[H] = shift >= QUAD_BITS ? 0 : in ___ashldi3() 52 aa.ul[L] << (shift - LONG_BITS); in ___ashldi3() 53 aa.ul[L] = 0; in ___ashldi3() 55 aa.ul[H] = (aa.ul[H] << shift) | in ___ashldi3() 56 (aa.ul[L] >> (LONG_BITS - shift)); in ___ashldi3() 57 aa.ul[L] <<= shift; in ___ashldi3() 59 return (aa.q); in ___ashldi3()
|
H A D | lshrdi3.c | 46 union uu aa; in ___lshrdi3() local 48 aa.q = a; in ___lshrdi3() 50 aa.ul[L] = shift >= QUAD_BITS ? 0 : in ___lshrdi3() 51 aa.ul[H] >> (shift - LONG_BITS); in ___lshrdi3() 52 aa.ul[H] = 0; in ___lshrdi3() 54 aa.ul[L] = (aa.ul[L] >> shift) | in ___lshrdi3() 55 (aa.ul[H] << (LONG_BITS - shift)); in ___lshrdi3() 56 aa.ul[H] >>= shift; in ___lshrdi3() 58 return (aa.q); in ___lshrdi3()
|
H A D | ucmpdi2.c | 47 union uu aa, bb; in ___ucmpdi2() local 49 aa.uq = a; in ___ucmpdi2() 51 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 : in ___ucmpdi2() 52 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in ___ucmpdi2()
|
H A D | cmpdi2.c | 48 union uu aa, bb; in ___cmpdi2() local 50 aa.q = a; in ___cmpdi2() 52 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : in ___cmpdi2() 53 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in ___cmpdi2()
|
H A D | floatdidf.c | 39 union uu aa; in ___floatdidf() local 42 aa.q = a; in ___floatdidf() 43 d = aa.sl[H]; in ___floatdidf() 46 d += aa.ul[L]; in ___floatdidf()
|
H A D | floatundidf.c | 37 union uu aa; in ___floatundidf() local 40 aa.uq = a; in ___floatundidf() 41 d = aa.ul[H]; in ___floatundidf() 44 d += aa.ul[L]; in ___floatundidf()
|
H A D | floatundisf.c | 37 union uu aa; in ___floatundisf() local 40 aa.uq = a; in ___floatundisf() 41 d = aa.ul[H]; in ___floatundisf() 44 d += aa.ul[L]; in ___floatundisf()
|
H A D | floatdisf.c | 39 union uu aa; in ___floatdisf() local 42 aa.q = a; in ___floatdisf() 43 d = aa.sl[H]; in ___floatdisf() 46 d += aa.ul[L]; in ___floatdisf()
|
/titanic_44/usr/src/cmd/rmvolmgr/ |
H A D | vold.c | 137 static char *not_mountable(struct action_arg *aa); 144 static int create_notify_files(struct action_arg **aa); 148 static boolean_t remove_notify_files(struct action_arg **aa); 477 struct action_arg *aa[2]; in vold_action() local 540 aa[0] = aap; in vold_action() 541 aa[1] = &a1; in vold_action() 543 action = aa[0]->aa_action; in vold_action() 557 result = remove_notify_files(aa); in vold_action() 560 result = remove_notify_files(aa); in vold_action() 566 result = create_notify_files(aa); in vold_action() [all …]
|
H A D | rmvolmgr.c | 59 struct action_arg aa; member 309 if (!rmm_volume_aa_from_prop(ctx, udi, NULL, &v->aa)) { in rmm_managed_alloc() 321 rmm_volume_aa_free(&v->aa); in rmm_managed_free() 396 if (rmm_action(hal_ctx, udi, INSERT, &v->aa, 0, 0, 0)) { in volume_added() 420 v->aa.aa_action = EJECT; in volume_removed() 421 (void) vold_postprocess(hal_ctx, udi, &v->aa); in volume_removed() 478 v->aa.aa_action = INSERT; in rmm_property_modified() 479 (void) vold_postprocess(hal_ctx, udi, &v->aa); in rmm_property_modified() 488 v->aa.aa_action = EJECT; in rmm_property_modified() 489 (void) vold_postprocess(hal_ctx, udi, &v->aa); in rmm_property_modified() [all …]
|
/titanic_44/usr/src/uts/common/io/1394/targets/scsa1394/ |
H A D | sbp2_bus.c | 322 t1394_alloc_addr_t aa; in scsa1394_bus_alloc_buf_phys() local 359 bzero(&aa, sizeof (aa)); in scsa1394_bus_alloc_buf_phys() 360 aa.aa_type = T1394_ADDR_FIXED; in scsa1394_bus_alloc_buf_phys() 361 aa.aa_length = buf->bb_len; in scsa1394_bus_alloc_buf_phys() 363 aa.aa_enable |= T1394_ADDR_RDENBL; in scsa1394_bus_alloc_buf_phys() 366 aa.aa_enable |= T1394_ADDR_WRENBL; in scsa1394_bus_alloc_buf_phys() 368 aa.aa_address = buf->bb_paddr; /* PCI-1394 mapping is 1-1 */ in scsa1394_bus_alloc_buf_phys() 370 if (t1394_alloc_addr(sp->s_t1394_hdl, &aa, 0, &result) != DDI_SUCCESS) { in scsa1394_bus_alloc_buf_phys() 377 sbb->sbb_addr_hdl = aa.aa_hdl; in scsa1394_bus_alloc_buf_phys() 378 buf->bb_baddr = aa.aa_address; in scsa1394_bus_alloc_buf_phys() [all …]
|
H A D | hba.c | 1753 t1394_alloc_addr_t aa; in scsa1394_cmd_pt_dma_alloc() local 1784 aa.aa_type = T1394_ADDR_FIXED; in scsa1394_cmd_pt_dma_alloc() 1785 aa.aa_length = len; in scsa1394_cmd_pt_dma_alloc() 1786 aa.aa_address = cmd->sc_pt_dmac.dmac_address; in scsa1394_cmd_pt_dma_alloc() 1787 aa.aa_evts.recv_read_request = NULL; in scsa1394_cmd_pt_dma_alloc() 1788 aa.aa_evts.recv_write_request = NULL; in scsa1394_cmd_pt_dma_alloc() 1789 aa.aa_evts.recv_lock_request = NULL; in scsa1394_cmd_pt_dma_alloc() 1790 aa.aa_arg = NULL; in scsa1394_cmd_pt_dma_alloc() 1791 aa.aa_kmem_bufp = NULL; in scsa1394_cmd_pt_dma_alloc() 1792 aa.aa_enable = T1394_ADDR_RDENBL; in scsa1394_cmd_pt_dma_alloc() [all …]
|
/titanic_44/usr/src/common/bignum/ |
H A D | bignumimpl.c | 508 big_add_abs(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) in big_add_abs() argument 516 if (aa->len > bb->len) { in big_add_abs() 518 longer = aa->len; in big_add_abs() 519 longerarg = aa; in big_add_abs() 521 shorter = aa->len; in big_add_abs() 533 a = aa->value; in big_add_abs() 586 big_sub_pos(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) in big_sub_pos() argument 593 if (aa->len > bb->len) { in big_sub_pos() 596 shorter = aa->len; in big_sub_pos() 598 if (result->size < aa->len) { in big_sub_pos() [all …]
|
H A D | bignum.h | 154 BIGNUM *aa, BIGNUM *bb); 157 BIG_ERR_CODE big_add(BIGNUM *result, BIGNUM *aa, BIGNUM *bb); 158 BIG_ERR_CODE big_add_abs(BIGNUM *result, BIGNUM *aa, BIGNUM *bb); 159 BIG_ERR_CODE big_mul(BIGNUM *result, BIGNUM *aa, BIGNUM *bb); 160 void big_shiftright(BIGNUM *result, BIGNUM *aa, int offs); 164 BIG_ERR_CODE big_sub_pos(BIGNUM *result, BIGNUM *aa, BIGNUM *bb); 166 BIG_ERR_CODE big_sub(BIGNUM *result, BIGNUM *aa, BIGNUM *bb);
|
/titanic_44/usr/src/lib/libinstzones/common/ |
H A D | zones_args.c | 279 argArray_t *aa; in _z_new_args() local 293 aa = (argArray_t *)_z_calloc(sizeof (argArray_t)); in _z_new_args() 297 aa->_aaArgs = (char **)_z_calloc((initialCount+1) * sizeof (char *)); in _z_new_args() 301 aa->_aaNumArgs = 0; in _z_new_args() 302 aa->_aaMaxArgs = initialCount; in _z_new_args() 306 return (aa); in _z_new_args()
|
/titanic_44/usr/src/lib/libsqlite/test/ |
H A D | select2.test | 124 CREATE TABLE aa(a); 126 INSERT INTO aa VALUES(1); 127 INSERT INTO aa VALUES(3); 130 SELECT * FROM aa, bb WHERE max(a,b)>2; 136 SELECT * FROM aa, bb WHERE b; 141 SELECT * FROM aa, bb WHERE NOT b; 146 SELECT * FROM aa, bb WHERE min(a,b); 151 SELECT * FROM aa, bb WHERE NOT min(a,b); 156 SELECT * FROM aa, bb WHERE CASE WHEN a=b-1 THEN 1 END; 161 SELECT * FROM aa, bb WHERE CASE WHEN a=b-1 THEN 0 ELSE 1 END;
|
/titanic_44/usr/src/lib/libast/common/string/ |
H A D | stracmp.c | 40 stracmp(const char* aa, const char* ab) 49 return strcmp(aa, ab); 50 a = (unsigned char*)aa;
|
/titanic_44/usr/src/uts/common/io/1394/targets/av1394/ |
H A D | av1394_cmp.c | 489 t1394_alloc_addr_t aa; in av1394_pcr_alloc_addr() local 495 bzero(&aa, sizeof (aa)); in av1394_pcr_alloc_addr() 496 aa.aa_address = addr; in av1394_pcr_alloc_addr() 497 aa.aa_length = 4; in av1394_pcr_alloc_addr() 498 aa.aa_type = T1394_ADDR_FIXED; in av1394_pcr_alloc_addr() 499 aa.aa_enable = T1394_ADDR_RDENBL | T1394_ADDR_LKENBL; in av1394_pcr_alloc_addr() 500 aa.aa_evts.recv_read_request = av1394_pcr_recv_read_request; in av1394_pcr_alloc_addr() 501 aa.aa_evts.recv_lock_request = av1394_pcr_recv_lock_request; in av1394_pcr_alloc_addr() 502 aa.aa_arg = avp; in av1394_pcr_alloc_addr() 504 ret = t1394_alloc_addr(avp->av_t1394_hdl, &aa, 0, &result); in av1394_pcr_alloc_addr() [all …]
|
/titanic_44/usr/src/cmd/picl/plugins/sun4u/daktari/frudata/ |
H A D | libpiclfrudata.conf | 58 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=0,aa 84 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=1,aa 109 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=2,aa 135 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=3,aa 155 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=4,aa 175 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,30/fru?UnitAddress=0,aa 202 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=0,aa 227 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=1,aa 252 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=2,aa 277 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=3,aa
|
/titanic_44/usr/src/cmd/picl/plugins/sun4u/silverstone/frudata/ |
H A D | libpiclfrudata.conf | 58 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=0,aa 84 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=1,aa 109 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=2,aa 135 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=3,aa 155 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,2e/fru?UnitAddress=4,aa 175 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,30/fru?UnitAddress=0,aa 202 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=0,aa 227 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=1,aa 252 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=2,aa 277 name:/platform/pci?UnitAddress=9,700000/ebus/i2c?UnitAddress=1,50002e/fru?UnitAddress=3,aa
|
/titanic_44/usr/src/lib/libc/i386/fp/ |
H A D | _X_cplx_div_rx.c | 99 } aa, cc, dd; in _X_cplx_div_rx() local 112 aa.e = a; in _X_cplx_div_rx() 113 ea = aa.i[2] & 0x7fff; in _X_cplx_div_rx()
|
H A D | _X_cplx_div.c | 89 } aa, bb, cc, dd, ss; in _X_cplx_div() local 105 aa.e = a; in _X_cplx_div() 107 ea = aa.i[2] & 0x7fff; in _X_cplx_div()
|
/titanic_44/usr/src/lib/libc/sparc/fp/ |
H A D | _Q_cplx_div_rx.c | 93 } aa, cc, dd; local 108 aa.q = a; 109 ha = aa.i[0] & ~0x80000000;
|
H A D | _D_cplx_div_rx.c | 101 } aa, cc, dd; in _D_cplx_div_rx() local 114 aa.d = a; in _D_cplx_div_rx() 115 ha = aa.i[0] & ~0x80000000; in _D_cplx_div_rx()
|