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/av/services/audioflinger/
H A DAudioResamplerFirProcess.h27 void mac(int32_t& l, int32_t& r, TC coef, const int16_t* samples) function in namespace:android
36 void mac(int32_t& l, TC coef, const int16_t* samples) function in namespace:android
44 void mac(float& l, float& r, TC coef, const float* samples) function in namespace:android
52 void mac(float& l, TC coef, const float* samples) function in namespace:android
89 mac(value, coef, data++);
199 // for (int j = 0; j < CHANNELS; ++j) mac(accum[j], c, sP + j);
207 // for (int j = 0; j < CHANNELS; ++j) mac(accum[j], c, sN + j);
221 mac(l, r, TFUNC::interpolatep(coefsP[0], coefsP[count], lerpP), sP);
224 mac(l, r, TFUNC::interpolaten(coefsN[count], coefsN[0], lerpP), sN);
233 mac(
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c687 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
694 * [in] mac Result of MAC operation
697 * [out] mac Result of operation
701 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
721 mac = armSatAdd_S32(mac,result);
723 return mac;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c687 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
694 * [in] mac Result of MAC operation
697 * [out] mac Result of operation
701 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
721 mac = armSatAdd_S32(mac,result);
723 return mac;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c687 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
694 * [in] mac Result of MAC operation
697 * [out] mac Result of operation
701 OMX_S32 armSatMac_S16S32_S32(OMX_S32 mac, OMX_S32 delayElem, OMX_S16 filTap ) argument
721 mac = armSatAdd_S32(mac,result);
723 return mac;
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpPacket.java490 public static String macToString(byte[] mac) { argument
493 for (int i = 0; i < mac.length; i++) {
494 String hexString = "0" + Integer.toHexString(mac[i]);
500 if (i != (mac.length - 1)) {
832 byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr,
836 transactionId, broadcast, serverIpAddr, clientIpAddr, mac);
852 byte[] mac, Integer timeout, InetAddress netMask, InetAddress bcAddr,
856 transactionId, broadcast, serverIpAddr, clientIpAddr, mac);
871 InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac) {
873 serverIpAddr, serverIpAddr, serverIpAddr, mac);
830 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
850 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
870 buildNakPacket(int encap, int transactionId, InetAddress serverIpAddr, InetAddress clientIpAddr, byte[] mac) argument
[all...]

Completed in 5754 milliseconds