Searched refs:aa (Results 1 - 25 of 71) sorted by relevance

123

/illumos-gate/usr/src/lib/libc/port/fp/
H A Dashrdi3.c46 union uu aa; local
48 aa.q = a;
59 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
60 aa.ul[L] = shift >= QUAD_BITS ? s :
61 aa.sl[H] >> (shift - LONG_BITS);
62 aa.ul[H] = s;
64 aa.ul[L] = (aa.ul[L] >> shift) |
65 (aa.ul[H] << (LONG_BITS - shift));
66 aa
[all...]
H A Dashldi3.c47 union uu aa; local
49 aa.q = a;
51 aa.ul[H] = shift >= QUAD_BITS ? 0 :
52 aa.ul[L] << (shift - LONG_BITS);
53 aa.ul[L] = 0;
55 aa.ul[H] = (aa.ul[H] << shift) |
56 (aa.ul[L] >> (LONG_BITS - shift));
57 aa.ul[L] <<= shift;
59 return (aa
[all...]
H A Dlshrdi3.c46 union uu aa; local
48 aa.q = a;
50 aa.ul[L] = shift >= QUAD_BITS ? 0 :
51 aa.ul[H] >> (shift - LONG_BITS);
52 aa.ul[H] = 0;
54 aa.ul[L] = (aa.ul[L] >> shift) |
55 (aa.ul[H] << (LONG_BITS - shift));
56 aa.ul[H] >>= shift;
58 return (aa
[all...]
H A Dcmpdi2.c48 union uu aa, bb; local
50 aa.q = a;
52 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 :
53 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Ducmpdi2.c47 union uu aa, bb; local
49 aa.uq = a;
51 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
52 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dfloatdidf.c39 union uu aa; local
42 aa.q = a;
43 d = aa.sl[H];
46 d += aa.ul[L];
H A Dfloatdisf.c39 union uu aa; local
42 aa.q = a;
43 d = aa.sl[H];
46 d += aa.ul[L];
H A Dfloatundidf.c37 union uu aa; local
40 aa.uq = a;
41 d = aa.ul[H];
44 d += aa.ul[L];
H A Dfloatundisf.c37 union uu aa; local
40 aa.uq = a;
41 d = aa.ul[H];
44 d += aa.ul[L];
/illumos-gate/usr/src/lib/libast/common/string/
H A Dstracmp.c40 stracmp(const char* aa, const char* ab)
49 return strcmp(aa, ab);
50 a = (unsigned char*)aa;
/illumos-gate/usr/src/cmd/rmvolmgr/
H A Dvold.c137 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]; local
540 aa[0] = aap;
541 aa[1] = &a1;
543 action = aa[0]->aa_action;
557 result = remove_notify_files(aa);
560 result = remove_notify_files(aa);
566 result = create_notify_files(aa);
627 not_mountable(struct action_arg *aa) argument
633 create_notify_files(struct action_arg **aa) argument
1035 remove_notify_files(struct action_arg **aa) argument
[all...]
H A Drmvolmgr.c59 struct action_arg aa; member in struct:managed_volume
309 if (!rmm_volume_aa_from_prop(ctx, udi, NULL, &v->aa)) {
321 rmm_volume_aa_free(&v->aa);
396 if (rmm_action(hal_ctx, udi, INSERT, &v->aa, 0, 0, 0)) {
420 v->aa.aa_action = EJECT;
421 (void) vold_postprocess(hal_ctx, udi, &v->aa);
478 v->aa.aa_action = INSERT;
479 (void) vold_postprocess(hal_ctx, udi, &v->aa);
488 v->aa.aa_action = EJECT;
489 (void) vold_postprocess(hal_ctx, udi, &v->aa);
[all...]
/illumos-gate/usr/src/lib/libinstzones/common/
H A Dzones_args.c109 * _z_add_arg(aa, "/proc/self/fd/%d", fd);
111 * _z_add_arg(aa, "-s")
114 * _z_add_arg(aa, "%s", random_text);
279 argArray_t *aa; local
293 aa = (argArray_t *)_z_calloc(sizeof (argArray_t));
297 aa->_aaArgs = (char **)_z_calloc((initialCount+1) * sizeof (char *));
301 aa->_aaNumArgs = 0;
302 aa->_aaMaxArgs = initialCount;
306 return (aa);
/illumos-gate/usr/src/uts/common/io/1394/targets/scsa1394/
H A Dsbp2_bus.c322 t1394_alloc_addr_t aa; local
359 bzero(&aa, sizeof (aa));
360 aa.aa_type = T1394_ADDR_FIXED;
361 aa.aa_length = buf->bb_len;
363 aa.aa_enable |= T1394_ADDR_RDENBL;
366 aa.aa_enable |= T1394_ADDR_WRENBL;
368 aa.aa_address = buf->bb_paddr; /* PCI-1394 mapping is 1-1 */
370 if (t1394_alloc_addr(sp->s_t1394_hdl, &aa, 0, &result) != DDI_SUCCESS) {
377 sbb->sbb_addr_hdl = aa
405 t1394_alloc_addr_t aa; local
[all...]
/illumos-gate/usr/src/common/bignum/
H A Dbignumimpl.c508 big_add_abs(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
516 if (aa->len > bb->len) {
518 longer = aa->len;
519 longerarg = aa;
521 shorter = aa->len;
533 a = aa->value;
584 /* result=aa-bb it is assumed that aa>=bb */
586 big_sub_pos(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
593 if (aa
638 big_cmp_abs(BIGNUM *aa, BIGNUM *bb) argument
670 big_sub(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
714 big_add(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
759 big_half_pos(BIGNUM *result, BIGNUM *aa) argument
791 big_double(BIGNUM *result, BIGNUM *aa) argument
832 big_modhalf_pos(BIGNUM *aa, uint32_t b) argument
858 big_sub_pos_high(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
887 big_cmp_abs_high(BIGNUM *aa, BIGNUM *bb) argument
906 big_mulhalf_low(BIGNUM *result, BIGNUM *aa, BIG_CHUNK_TYPE b) argument
936 big_mulhalf_high(BIGNUM *result, BIGNUM *aa, BIG_CHUNK_TYPE b) argument
963 big_shiftleft(BIGNUM *result, BIGNUM *aa, int offs) argument
992 big_shiftright(BIGNUM *result, BIGNUM *aa, int offs) argument
1020 big_div_pos(BIGNUM *result, BIGNUM *remainder, BIGNUM *aa, BIGNUM *bb) argument
1555 big_mul(BIGNUM *result, BIGNUM *aa, BIGNUM *bb) argument
[all...]
H A Dbignum.h154 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);
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_cplx_div_rx.c93 } aa, cc, dd; local
108 aa.q = a;
109 ha = aa.i[0] & ~0x80000000;
H A D_D_cplx_div.c91 } aa, bb, cc, dd, ss; local
107 aa.d = a;
109 ha = aa.i[0] & ~0x80000000;
H A D_D_cplx_div_rx.c101 } aa, cc, dd; local
114 aa.d = a;
115 ha = aa.i[0] & ~0x80000000;
H A D_Q_cplx_div.c98 } aa, bb, cc, dd, ss; local
114 aa.q = a;
116 ha = aa.i[0] & ~0x80000000;
/illumos-gate/usr/src/lib/libshell/common/scripts/
H A Dxmldocumenttree1.sh41 nameref aa=$2 # attribute array
81 aa[${aa_count}]=( name="${tagstr%%=*}" value="${tagval}" )
84 aa[${aa_count}]=( name="${tagstr}" )
/illumos-gate/usr/src/lib/libc/i386/fp/
H A D_X_cplx_div.c89 } aa, bb, cc, dd, ss; local
105 aa.e = a;
107 ea = aa.i[2] & 0x7fff;
H A D_X_cplx_div_rx.c99 } aa, cc, dd; local
112 aa.e = a;
113 ea = aa.i[2] & 0x7fff;
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_cmp.c489 t1394_alloc_addr_t aa; local
495 bzero(&aa, sizeof (aa));
496 aa.aa_address = addr;
497 aa.aa_length = 4;
498 aa.aa_type = T1394_ADDR_FIXED;
499 aa.aa_enable = T1394_ADDR_RDENBL | T1394_ADDR_LKENBL;
500 aa.aa_evts.recv_read_request = av1394_pcr_recv_read_request;
501 aa.aa_evts.recv_lock_request = av1394_pcr_recv_lock_request;
502 aa
[all...]
/illumos-gate/usr/src/lib/libresolv/arpa/
H A Dnameser.h155 u_char aa:1; /* authoritive answer */ member in struct:__anon3851
169 u_char aa:1; /* authoritive answer */ member in struct:__anon3851

Completed in 169 milliseconds

123