HomeSort by relevance Sort by last modified time
    Searched full:ieee (Results 1 - 25 of 1860) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/VEX/priv/
host_generic_maddf.c 82 /* This is the IEEE 754 double-precision format. */
95 } ieee; member in union:vg_ieee754_double
121 if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff)
122 u.ieee.mantissa1 |= j;
144 if (UNLIKELY (u.ieee.exponent + v.ieee.exponent
146 || UNLIKELY (u.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
147 || UNLIKELY (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG)
148 || UNLIKELY (w.ieee.exponent >= 0x7ff - DBL_MANT_DIG
    [all...]
  /prebuilts/go/darwin-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
13 // to the IEEE 754 binary representation b.
16 // Float64bits returns the IEEE 754 binary representation of f.
20 // the IEEE 754 binary representation b.
  /prebuilts/go/linux-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
13 // to the IEEE 754 binary representation b.
16 // Float64bits returns the IEEE 754 binary representation of f.
20 // the IEEE 754 binary representation b.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
attr-merge-4.attr 8 Tag_ABI_FP_number_model: IEEE 754
attr-merge-6.attr 8 Tag_ABI_FP_number_model: IEEE 754
attr-merge-2.attr 10 Tag_ABI_FP_number_model: IEEE 754
attr-merge.attr 10 Tag_ABI_FP_number_model: IEEE 754
  /toolchain/binutils/binutils-2.25/bfd/
ieee.c 1 /* BFD back-end for ieee-695 objects.
26 /* IEEE 695 format is a stream of records, which we parse using a simple one-
33 #include "ieee.h"
57 /* Functions for writing to ieee files in the strange way that the
170 /* Functions for reading from ieee files in the strange way that the
173 #define this_byte(ieee) *((ieee)->input_p)
174 #define next_byte(ieee) ((ieee)->input_p++)
175 #define this_byte_and_next(ieee) (*((ieee)->input_p++)
721 ieee_data_type *ieee = IEEE_DATA (abfd); local
1011 ieee_data_type *ieee = IEEE_DATA (abfd); local
1098 ieee_data_type *ieee = IEEE_DATA (abfd); local
1273 ieee_data_type *ieee = IEEE_DATA (abfd); local
1303 ieee_ar_data_type *ieee; local
1661 ieee_data_type *ieee = IEEE_DATA (abfd); local
1792 ieee_data_type *ieee; local
2069 ieee_data_type *ieee = IEEE_DATA (abfd); local
2116 ieee_data_type *ieee = IEEE_DATA (abfd); local
2607 ieee_data_type *ieee; local
3110 ieee_data_type *ieee = IEEE_DATA (abfd); local
3174 ieee_data_type *ieee = IEEE_DATA (abfd); local
3268 ieee_data_type *ieee = IEEE_DATA (abfd); local
3397 ieee_data_type *ieee = IEEE_DATA (abfd); local
3517 ieee_data_type *ieee = IEEE_DATA (abfd); local
3688 ieee_data_type *ieee; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KDFParameters.java 6 * parameters for Key derivation functions for IEEE P1363a
  /external/wpa_supplicant_8/hostapd/
hostapd.8 3 hostapd \- IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
14 It implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP Authenticators and RADIUS authentication server.
hostapd.deny 1 # List of MAC addresses that are not allowed to authenticate (IEEE 802.11)
hostapd.accept 1 # List of MAC addresses that are allowed to authenticate (IEEE 802.11)
README 1 hostapd - user space IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP
55 driver. It adds more features to the basic IEEE 802.11 management
57 server for MAC address based access control, IEEE 802.1X Authenticator
58 and dynamic WEP keying, RADIUS accounting, WPA/WPA2 (IEEE 802.11i/RSN)
81 Any wired Ethernet driver for wired IEEE 802.1X authentication
99 IEEE 802.1X
102 IEEE Std 802.1X-2001 is a standard for port-based network access
103 control. In case of IEEE 802.11 networks, a "virtual port" is used
104 between each associated station and the AP. IEEE 802.11 specifie
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_1x_defs.h 2 * IEEE Std 802.1X-2010 definitions
31 /* IEEE Std 802.1X-2010 - Table 11-6 - MACsec Capability */
63 /* IEEE Std 802.1X-2010 - Table 11-6 - Confidentiality Offset */
71 /* IEEE Std 802.1X-2010 - Table 9-2 */
  /external/wpa_supplicant_8/wpa_supplicant/examples/
ieee8021x.conf 0 # IEEE 802.1X with dynamic WEP keys using EAP-PEAP/MSCHAPv2
  /external/bison/m4/
fpieee.m4 7 dnl IEEE 754 standardized three items:
29 # IEEE behaviour is the default on all CPUs except Alpha and SH
35 # See the ieee(3) manual page, also available at
39 # For full IEEE compliance (rarely needed), use option -mieee-with-inexact.
42 # Compaq (ex-DEC) C has the option -ieee, equivalent to -ieee_with_no_inexact.
43 # For full IEEE compliance (rarely needed), use option -ieee_with_inexact.
44 CPPFLAGS="$CPPFLAGS -ieee"
  /external/clang/test/Driver/
x86_features.c 6 // RUN: %clang -### %s -mieee-fp -S 2>&1 | FileCheck --check-prefix=IEEE %s
7 // IEEE-NOT: error: unknown argument
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_nanl.c 38 union IEEEl2bits ieee; member in union:__anon1205
43 u.ieee.bits.exp = 0x7fff;
44 u.ieee.bits.manh |= 1ULL << 47; /* make it a quiet NaN */
45 return (u.ieee.e);
  /external/fdlibm/
s_logb.c 16 * IEEE 754 logb. Included to pass IEEE test suite. Not recommend.
34 if((ix>>=20)==0) /* IEEE 754 logb */
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
wpa_background.sgml 10 <refpurpose>Background information on Wi-Fi Protected Access and IEEE 802.11i</refpurpose>
15 <para>The original security mechanism of IEEE 802.11 standard was
18 (Security) of IEEE 802.11 working group
21 2004. The IEEE 802.11i amendment to the IEEE 802.11 standard was
25 of the IEEE 802.11i work (draft 3.0) to define a subset of the
33 <para>IEEE 802.11 standard defined wired equivalent privacy (WEP)
53 EAP just like IEEE 802.1X is using or pre-shared keys without need
69 <title>IEEE 802.11i / WPA2</title>
71 <para>The design for parts of IEEE 802.11i that were not include
    [all...]
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32.go 25 // IEEE is by far and away the most common CRC-32 polynomial.
26 // Used by ethernet (IEEE 802.3), v.42, fddi, gzip, zip, png, ...
27 IEEE = 0xedb88320
30 // Has better error detection characteristics than IEEE.
35 // Also has better error detection characteristics than IEEE.
54 // IEEETable is the table for the IEEE polynomial.
55 var IEEETable = makeTable(IEEE)
60 // iEEETable8 is the slicing8Table for IEEE
67 case IEEE:
118 // using the IEEE polynomial
    [all...]
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32.go 25 // IEEE is by far and away the most common CRC-32 polynomial.
26 // Used by ethernet (IEEE 802.3), v.42, fddi, gzip, zip, png, ...
27 IEEE = 0xedb88320
30 // Has better error detection characteristics than IEEE.
35 // Also has better error detection characteristics than IEEE.
54 // IEEETable is the table for the IEEE polynomial.
55 var IEEETable = makeTable(IEEE)
60 // iEEETable8 is the slicing8Table for IEEE
67 case IEEE:
118 // using the IEEE polynomial
    [all...]
  /external/opencv3/doc/
opencv.bib 58 journal = {Pattern Analysis and Machine Intelligence, IEEE Transactions on},
61 publisher = {IEEE}
98 booktitle = {Applications of Computer Vision, 2000, Fifth IEEE Workshop on.},
101 organization = {IEEE}
136 booktitle = {Computational Photography (ICCP), 2012 IEEE International Conference on},
139 organization = {IEEE}
146 journal = {Pattern Analysis and Machine Intelligence, IEEE Transactions on},
148 publisher = {IEEE}
190 booktitle = {Computer Vision and Pattern Recognition, 2005. CVPR 2005. IEEE Computer Society Conference on},
194 organization = {IEEE}
    [all...]
  /external/icu/icu4c/source/i18n/
fmtableimp.h 27 * IEEE doubles have 53 bits of mantissa, 10 bits exponent, 1 bit sign.
  /external/mesa3d/docs/
README.VMS 30 changed default compilation to use /float=ieee/ieee=denorm. The reason for
37 of IEEE floating point by removing the /float=IEEE/denorm flag from the

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 91011>>