Searched defs:mac (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java35 public MacAuthenticatedInputStream(InputStream in, Mac mac) { argument
38 mMac = mac;
/frameworks/base/core/java/android/net/arp/
H A DArpPeer.java56 public ArpPeer(String interfaceName, InetAddress myAddr, String mac, argument
61 if (mac != null) {
63 mMyMac[i] = (byte) Integer.parseInt(mac.substring(
116 && (recvBuf[4] == MAC_ADDR_LENGTH) // mac length
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operation
682 * [out] mac Result of operation
686 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
706 mac = armSatAdd_S32(mac,result);
708 return mac;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operation
682 * [out] mac Result of operation
686 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
706 mac = armSatAdd_S32(mac,result);
708 return mac;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operation
682 * [out] mac Result of operation
686 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
706 mac = armSatAdd_S32(mac,result);
708 return mac;
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpPacket.java493 public static String macToString(byte[] mac) { argument
496 for (int i = 0; i < mac.length; i++) {
497 String hexString = "0" + Integer.toHexString(mac[i]);
503 if (i != (mac.length - 1)) {
835 byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr,
839 transactionId, broadcast, serverIpAddr, clientIpAddr, mac);
855 byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr,
859 transactionId, broadcast, serverIpAddr, clientIpAddr, mac);
874 InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac) {
876 serverIpAddr, serverIpAddr, serverIpAddr, mac);
833 buildOfferPacket(int encap, int transactionId, boolean broadcast, InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr, InetAddress gateway, List<InetAddress> dnsServers, InetAddress dhcpServerIdentifier, String domainName) argument
853 buildAckPacket(int encap, int transactionId, boolean broadcast, InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr, InetAddress gateway, List<InetAddress> dnsServers, InetAddress dhcpServerIdentifier, String domainName) argument
873 buildNakPacket(int encap, int transactionId, InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac) argument
[all...]

Completed in 125 milliseconds