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

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dashldi3.c56 union uu aa; local
60 aa.q = a;
62 aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
69 return (aa
[all...]
H A Dlshldi3.c56 union uu aa; local
60 aa.q = a;
62 aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
69 return (aa
[all...]
H A Dlshrdi3.c55 union uu aa; local
59 aa.q = a;
61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
62 aa.ul[H] = 0;
64 aa.ul[L] = (aa.ul[L] >> shift) |
65 (aa.ul[H] << (INT_BITS - shift));
66 aa.ul[H] >>= shift;
68 return (aa
[all...]
H A Dnotdi2.c55 union uu aa; local
57 aa.q = a;
58 aa.ul[0] = ~aa.ul[0];
59 aa.ul[1] = ~aa.ul[1];
60 return (aa.q);
H A Dadddi3.c56 union uu aa, bb, sum; local
58 aa.q = a;
60 sum.ul[L] = aa.ul[L] + bb.ul[L];
61 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
H A Danddi3.c54 union uu aa, bb; local
56 aa.q = a;
58 aa.ul[0] &= bb.ul[0];
59 aa.ul[1] &= bb.ul[1];
60 return (aa.q);
H A Dashrdi3.c55 union uu aa; local
59 aa.q = a;
71 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1;
73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
74 aa.ul[H] = s;
76 aa.ul[L] = (aa.ul[L] >> shift) |
77 (aa.ul[H] << (INT_BITS - shift));
79 aa
[all...]
H A Dcmpdi2.c56 union uu aa, bb; local
58 aa.q = a;
60 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 :
61 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Diordi3.c54 union uu aa, bb; local
56 aa.q = a;
58 aa.ul[0] |= bb.ul[0];
59 aa.ul[1] |= bb.ul[1];
60 return (aa.q);
H A Dnegdi2.c54 union uu aa, res; local
56 aa.q = a;
57 res.ul[L] = -aa.ul[L];
58 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
H A Dsubdi3.c55 union uu aa, bb, diff; local
57 aa.q = a;
59 diff.ul[L] = aa.ul[L] - bb.ul[L];
60 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
H A Ducmpdi2.c55 union uu aa, bb; local
57 aa.uq = a;
59 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
60 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dxordi3.c54 union uu aa, bb; local
56 aa.q = a;
58 aa.ul[0] ^= bb.ul[0];
59 aa.ul[1] ^= bb.ul[1];
60 return (aa.q);
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_dns.c39 unsigned aa:1; member in struct:dnsmsg_header::__anon14943
105 pHdr->X.aa = 1;
183 pHdr->X.aa = 1;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/arpa/
H A Dnameser_compat.h105 unsigned aa: 1; /*%< authoritive answer */ member in struct:__anon12990
119 unsigned aa :1; /*%< authoritive answer */ member in struct:__anon12990
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c1335 long_to_decimal_string(PyObject *aa, int addL) argument
1344 a = (PyLongObject *)aa;
1453 _PyLong_Format(PyObject *aa, int base, int addL, int newstyle) argument
1455 register PyLongObject *a = (PyLongObject *)aa;
/vbox/src/VBox/Main/xml/
H A DSettings.cpp2623 AudioAdapter &aa)
2625 elmAudioAdapter.getAttributeValue("enabled", aa.fEnabled);
2631 aa.controllerType = AudioControllerType_SB16;
2633 aa.controllerType = AudioControllerType_AC97;
2635 aa.controllerType = AudioControllerType_HDA;
2645 aa.driverType = AudioDriverType_Null;
2647 aa.driverType = AudioDriverType_WinMM;
2649 aa.driverType = AudioDriverType_DirectSound;
2651 aa.driverType = AudioDriverType_SolAudio;
2653 aa
2622 readAudioAdapter(const xml::ElementNode &elmAudioAdapter, AudioAdapter &aa) argument
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...

Completed in 84 milliseconds