Searched defs:aa (Results 1 - 25 of 32) sorted by relevance

12

/illumos-gate/usr/src/lib/libc/port/fp/
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 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];
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 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 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);
/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/lib/libc/i386/fp/
H A D_X_cplx_div_rx.c99 } aa, cc, dd; local
112 aa.e = a;
113 ea = aa.i[2] & 0x7fff;
H A D_X_cplx_div.c89 } aa, bb, cc, dd, ss; local
105 aa.e = a;
107 ea = aa.i[2] & 0x7fff;
/illumos-gate/usr/src/lib/libc/sparc/fp/
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;
H A D_Q_cplx_div_rx.c93 } aa, cc, dd; local
108 aa.q = a;
109 ha = aa.i[0] & ~0x80000000;
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dsort.c168 const void *aa,
173 struct entrything *a = (struct entrything *)aa;
167 et_cmp( const void *aa, const void *bb ) argument
/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/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/cmd/rmvolmgr/
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...]
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...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Derror.c251 register int aa; local
256 aa = n2a['A'];
268 c += aa - 1;
/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
/illumos-gate/usr/src/common/mpi/
H A Dmp_gf2m.c498 mp_int aa, bb, uu; local
502 MP_DIGITS(&aa) = 0;
506 MP_CHECKOK( mp_init_copy(&aa, x) );
512 a = &aa; b= &bb; u=&uu; v=r;
556 mp_clear(&aa);
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_regd.c41 uint8_t *aa = a; local
44 for (ai = aa + size; --n >= 1; ai += size)
45 for (t = ai; t > aa; t -= size) {

Completed in 95 milliseconds

12