HomeSort by relevance Sort by last modified time
    Searched refs:MAC (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Index/
preamble-reparse-warn-macro.c 4 // CHECK: preamble-reparse-warn-macro.c:[[@LINE+8]]:9: warning: 'MAC' macro redefined
8 #define MAC 1
12 #define MAC 2
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/
exit.s 2 .macro MAC
8 MAC
  /libcore/ojluni/src/main/java/java/security/
CryptoPrimitive.java 57 MAC,
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_init/
MAC.java 36 public class MAC extends Asn1BitString {
42 public MAC() {
69 * Creates a new MAC from encoded stream.
71 public static MAC fromPerUnaligned(byte[] encodedBytes) {
72 MAC result = new MAC();
78 * Creates a new MAC from encoded stream.
80 public static MAC fromPerAligned(byte[] encodedBytes) {
81 MAC result = new MAC();
    [all...]
SUPLINIT.java 179 private MAC mAC_;
180 public MAC getMAC() {
184 * @throws ClassCastException if value is not a MAC
187 this.mAC_ = (MAC) value;
189 public MAC setMACToNewInstance() {
190 mAC_ = new MAC();
470 return tag == null ? MAC.getPossibleFirstTags() : ImmutableList.of(tag);
484 return "mAC : "
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 69 unsigned MAI, MAC;
70 InputArgList AL = T.ParseArgs(Args, MAI, MAC);
112 unsigned MAI, MAC;
115 InputArgList AL = T.ParseArgs(Args, MAI, MAC,
123 AL = T.ParseArgs(Args, MAI, MAC,
131 AL = T.ParseArgs(NewArgs, MAI, MAC);
140 unsigned MAI, MAC;
143 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
149 unsigned MAI, MAC;
152 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
    [all...]
  /prebuilts/go/darwin-x86/src/net/
mac_test.go 22 {"01.02.03.04.05.06", nil, "invalid MAC address"},
23 {"01:02:03:04:05:06:", nil, "invalid MAC address"},
24 {"x1:02:03:04:05:06", nil, "invalid MAC address"},
25 {"01002:03:04:05:06", nil, "invalid MAC address"},
26 {"01:02003:04:05:06", nil, "invalid MAC address"},
27 {"01:02:03004:05:06", nil, "invalid MAC address"},
28 {"01:02:03:04005:06", nil, "invalid MAC address"},
29 {"01:02:03:04:05006", nil, "invalid MAC address"},
30 {"01-02:03:04:05:06", nil, "invalid MAC address"},
31 {"01:02-03-04-05-06", nil, "invalid MAC address"}
    [all...]
mac.go 27 // ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
84 return nil, &AddrError{Err: "invalid MAC address", Addr: s}
  /prebuilts/go/linux-x86/src/net/
mac_test.go 22 {"01.02.03.04.05.06", nil, "invalid MAC address"},
23 {"01:02:03:04:05:06:", nil, "invalid MAC address"},
24 {"x1:02:03:04:05:06", nil, "invalid MAC address"},
25 {"01002:03:04:05:06", nil, "invalid MAC address"},
26 {"01:02003:04:05:06", nil, "invalid MAC address"},
27 {"01:02:03004:05:06", nil, "invalid MAC address"},
28 {"01:02:03:04005:06", nil, "invalid MAC address"},
29 {"01:02:03:04:05006", nil, "invalid MAC address"},
30 {"01-02:03:04:05:06", nil, "invalid MAC address"},
31 {"01:02-03-04-05-06", nil, "invalid MAC address"}
    [all...]
mac.go 27 // ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
84 return nil, &AddrError{Err: "invalid MAC address", Addr: s}
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Mcast_ip_to_mac.c 2 Implementation of converting an multicast IP address to multicast HW MAC
19 Call undi to convert an multicast IP address to a MAC address.
24 @param MAC Pointer to hold the return MAC address.
27 multicast HW MAC address.
38 IN OUT EFI_MAC_ADDRESS *MAC
99 CopyMem (MAC, &Db->MAC, sizeof (PXE_MAC_ADDR));
105 Converts a multicast IP address to a multicast HW MAC address.
107 This function converts a multicast IP address to a multicast HW MAC address
    [all...]
  /external/syslinux/core/fs/pxe/
isr.c 267 int hwad = ((int)MAC[0] << 16) + ((int)MAC[1] << 8) + MAC[2];
dhcp_option.c 92 memcpy(MAC, data+1, opt_len);
93 MAC[opt_len] = 0;
225 * MAC_len, MAC - Client identifier, if MAC_len == 0
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/util/
SQLiteLibraryLoaderTest.java 126 assertThat(loadLibrary(new SQLiteLibraryLoader(MAC), "Mac OS X", "any architecture"))
127 .isEqualTo("/mac-x86_64/libsqlite4java.jnilib");
132 assertThat(loadLibrary(new SQLiteLibraryLoader(MAC_DYLIB), "Mac OS X", "any architecture"))
133 .isEqualTo("/mac-x86_64/libsqlite4java.jnilib");
168 private static final SQLiteLibraryLoader.LibraryNameMapper MAC = new LibraryMapperTest("lib", "jnilib");
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d30v/
mul.s 2 # IU: MUL, MAC, MACS, MSUB, MSUBS (a)
  /external/boringssl/src/crypto/cipher_extra/test/
make_legacy_aead_tests.go 21 var mac *string = flag.String("mac", "", "The hash function to use in the MAC") var
23 var ssl3 *bool = flag.Bool("ssl3", false, "If true, use the SSLv3 MAC and padding rather than TLS")
135 // noPadding causes padding is to be omitted. The plaintext + MAC must
138 // omitMAC causes the MAC to be omitted.
162 hash, ok := getHash(*mac)
164 return nil, fmt.Errorf("unknown hash function '%s'", *mac)
173 return nil, fmt.Errorf("invalid hash for SSLv3: '%s'", *mac)
313 commandLine := fmt.Sprintf("go run make_legacy_aead_tests.go -cipher %s -mac %s", *bulkCipher, *mac
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSAlgorithmProtection.java 31 public static final int MAC = 2;
  /external/libgsm/src/
lpc.c 300 * MAC[0..7] = maximum of the LARc[0..7]
305 # define STEP( A, B, MAC, MIC ) \
310 *LAR = temp>MAC ? MAC - MIC : (temp<MIC ? 0 : temp - MIC); \
  /prebuilts/go/darwin-x86/src/crypto/tls/
cipher_suites.go 62 // A cipherSuite is a specific combination of key agreement, cipher and MAC
74 mac func(version uint16, macKey []byte) macFunction
131 mac := ssl30MAC{
135 copy(mac.key, key)
136 return mac
141 // macSHA256 returns a SHA-256 based MAC. These are only supported in TLS 1.2
149 MAC(digestBuf, seq, header, data, extra []byte) []byte
244 // ssl30MAC implements the SSLv3 MAC function, as defined in
259 // MAC does not offer constant timing guarantees for SSL v3.0, since it's deemed
261 func (s ssl30MAC) MAC(digestBuf, seq, header, data, extra []byte) []byte
    [all...]
alert.go 47 alertBadRecordMAC: "bad record MAC",
  /prebuilts/go/linux-x86/src/crypto/tls/
cipher_suites.go 62 // A cipherSuite is a specific combination of key agreement, cipher and MAC
74 mac func(version uint16, macKey []byte) macFunction
131 mac := ssl30MAC{
135 copy(mac.key, key)
136 return mac
141 // macSHA256 returns a SHA-256 based MAC. These are only supported in TLS 1.2
149 MAC(digestBuf, seq, header, data, extra []byte) []byte
244 // ssl30MAC implements the SSLv3 MAC function, as defined in
259 // MAC does not offer constant timing guarantees for SSL v3.0, since it's deemed
261 func (s ssl30MAC) MAC(digestBuf, seq, header, data, extra []byte) []byte
    [all...]
alert.go 47 alertBadRecordMAC: "bad record MAC",
  /external/syslinux/efi/
pxe.c 144 * Save away MAC address (assume this is in query info 2. If this
151 memcpy(MAC, mode->DhcpAck.Dhcpv4.BootpHwAddr, MAC_len);
  /external/boringssl/src/ssl/test/runner/
alert.go 54 alertBadRecordMAC: "bad record MAC",
cipher_suites.go 74 // A cipherSuite is a specific combination of key agreement, cipher and MAC
86 mac func(version uint16, macKey []byte) macFunction
179 mac := ssl30MAC{
183 copy(mac.key, key)
184 return mac
191 mac := ssl30MAC{
195 copy(mac.key, key)
196 return mac
203 mac := ssl30MAC{
207 copy(mac.key, key
    [all...]

Completed in 563 milliseconds

1 2 3 4 5 6 7