HomeSort by relevance Sort by last modified time
    Searched refs:mac (Results 276 - 300 of 633) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/public/test/
render_view_test.h 157 scoped_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_;
  /external/chromium_org/gpu/gles2_conform_support/
gles2_conform_test.cc 16 #include "base/mac/scoped_nsautorelease_pool.h"
86 base::mac::ScopedNSAutoreleasePool pool;
  /external/chromium_org/net/cert/
test_root_certs_mac.cc 10 #include "base/mac/mac_util.h"
11 #include "base/mac/scoped_cftyperef.h"
75 if (base::mac::IsOSLionOrLater()) {
  /external/chromium_org/net/third_party/nss/ssl/
sslgathr.c 47 ** and checks and discards the MAC, then advances to GS_INIT.
210 ** Check the MAC.
217 unsigned char mac[SSL_MAX_MAC_BYTES]; local
252 /* Have read in all the MAC portion of record
254 ** Prepare MAC by resetting it and feeding it the shared secret
272 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen);
278 if (NSS_SecureMemcmp(mac, pBuf, macLen) != 0) {
279 /* MAC's didn't match... */
280 SSL_DBG(("%d: SSL[%d]: mac check failed, seq=%d",
282 PRINT_BUF(1, (ss, "computed mac:", mac, macLen))
    [all...]
  /external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host_main.cc 26 #include "base/mac/scoped_nsautorelease_pool.h"
40 base::mac::ScopedNSAutoreleasePool pool;
44 // Initialize Breakpad as early as possible. On Mac the command-line needs to
  /external/chromium_org/ui/gfx/test/
ui_cocoa_test_helper.h 13 #import "base/mac/scoped_nsautorelease_pool.h"
87 base::mac::ScopedNSAutoreleasePool pool_;
  /external/chromium_org/ui/gl/
gl_implementation_mac.cc 8 #include "base/mac/foundation_util.h"
51 base::FilePath bundle_path = base::mac::GetAppBundlePath(exe_path);
gpu_switching_manager.cc 12 #include "base/mac/mac_util.h"
91 if (flag && !base::mac::IsOSLionOrLater())
  /external/chromium_org/ui/message_center/cocoa/
tray_view_controller.h 14 #include "base/mac/scoped_block.h"
15 #import "base/mac/scoped_nsobject.h"
113 base::mac::ScopedBlock<message_center::TrayAnimationEndedCallback>
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * 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 operatio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * 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 operatio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * 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 operatio
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/music_manager_private/
device_id_mac.cc 17 #include "base/mac/foundation_util.h"
18 #include "base/mac/scoped_cftyperef.h"
19 #include "base/mac/scoped_ioobject.h"
82 CFUUIDRef volume_uuid = base::mac::GetValueFromDictionary<CFUUIDRef>(
120 // Use the MAC address of the first network interface.
148 // MAC address from built-in network card is always best choice.
155 // Fall back to using non built-in card MAC address, but keep looking.
193 base::mac::ScopedIOObject<io_iterator_t> iterator(iterator_ref);
209 base::mac::ScopedIOObject<io_object_t> controller_service(
  /external/chromium_org/third_party/tlslite/tlslite/
mathtls.py 114 mac = MAC_SSL()
115 mac.create(k, digestmod=digestmod)
116 return mac
  /external/tcpdump/
print-mptcp.c 102 EXTRACT_64BITS(mpj->u.synack.mac),
108 for (i = 0; i < sizeof(mpj->u.ack.mac); ++i)
109 printf("%02x", mpj->u.ack.mac[i]);
  /libcore/luni/src/main/java/javax/crypto/
Mac.java 36 * (MAC) algorithms.
38 public class Mac implements Cloneable {
41 private static final String SERVICE = "Mac";
63 // Store Mac state (initialized or not initialized)
67 * Creates a new {@code Mac} instance.
74 * the name of the MAC algorithm.
76 protected Mac(MacSpi macSpi, Provider provider, String algorithm) {
84 * Returns the name of the MAC algorithm.
86 * @return the name of the MAC algorithm.
93 * Returns the provider of this {@code Mac} instance
527 Mac mac = new Mac(newSpiImpl, this.provider, this.algorithm); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 147 SMacro *mac; /* associated macro for TOK_SMAC_END */ member in struct:Token
3863 MMacro *mac; local
    [all...]
  /external/chromium_org/ui/gfx/
render_text_mac.cc 13 #include "base/mac/foundation_util.h"
14 #include "base/mac/scoped_cftyperef.h"
114 CTFontRef ct_font = base::mac::NSToCFCast(
207 // https://developer.apple.com/library/mac/#documentation/Carbon/Reference/CoreText_StringAttributes_Ref/Reference/reference.html
268 base::mac::CFCast<CTRunRef>(CFArrayGetValueAtIndex(ct_runs, i));
311 base::mac::GetValueFromDictionary<CTFontRef>(attributes,
325 base::mac::GetValueFromDictionary<CGColorRef>(
331 base::mac::GetValueFromDictionary<CFNumberRef>(
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 247 unsigned char c[32+SHA_DIGEST_LENGTH]; } mac, *pmac; local
250 pmac = (void *)(((size_t)mac.c+31)&((size_t)0-32));
294 len -= SHA_DIGEST_LENGTH; /* amend mac */
309 mac.c[0] = 0;
310 mac.c[1] = (unsigned char)(bitlen>>16);
311 mac.c[2] = (unsigned char)(bitlen>>8);
312 mac.c[3] = (unsigned char)bitlen;
313 bitlen = mac.u[0];
  /external/chromium_org/ui/gfx/image/
image.cc 24 #include "base/mac/foundation_util.h"
27 #include "base/mac/mac_util.h"
304 base::mac::NSObjectRelease(image_);
337 base::mac::NSObjectRelease(image_);
371 base::mac::GetGenericRGBColorSpace()),
562 base::mac::NSObjectRetain(image);
594 base::mac::NSObjectRetain(image);
704 base::mac::NSObjectRetain(image);
710 base::mac::NSObjectRetain(image);
  /external/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 247 unsigned char c[32+SHA_DIGEST_LENGTH]; } mac, *pmac; local
250 pmac = (void *)(((size_t)mac.c+31)&((size_t)0-32));
294 len -= SHA_DIGEST_LENGTH; /* amend mac */
309 mac.c[0] = 0;
310 mac.c[1] = (unsigned char)(bitlen>>16);
311 mac.c[2] = (unsigned char)(bitlen>>8);
312 mac.c[3] = (unsigned char)bitlen;
313 bitlen = mac.u[0];
  /external/chromium_org/third_party/yasm/
yasm.host.darwin-x86.mk 32 $(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/parsers/nasm/nasm-std.mac $(GYP_TARGET_DEPENDENCIES)
33 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/parsers/nasm/nasm-std.mac ($@)"
34 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c" nasm_standard_mac source/patched-yasm/modules/parsers/nasm/nasm-std.mac
43 $(gyp_intermediate_dir)/third_party/yasm/nasm-version.c: $(gyp_shared_intermediate_dir)/genmacro $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac $(GYP_TARGET_DEPENDENCIES)
44 @echo "Gyp action: yasm genmacro for $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac ($@)"
45 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-version.c" nasm_version_mac "$(gyp_shared_intermediate_dir)/third_party/yasm/version.mac"
54 $(gyp_intermediate_dir)/third_party/yasm/win64-gas.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-gas.mac $(GYP_TARGET_DEPENDENCIES)
55 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/objfmts/coff/win64-gas.mac ($@)"
56 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/win64-gas.c" win64_gas_stdmac source/patched-yasm/modules/objfmts/coff/win64-gas.mac
65 $(gyp_intermediate_dir)/third_party/yasm/win64-nasm.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-nasm.mac $(GYP_TARGET_DEPENDENCIES
    [all...]
yasm.host.darwin-x86_64.mk 32 $(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/parsers/nasm/nasm-std.mac $(GYP_TARGET_DEPENDENCIES)
33 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/parsers/nasm/nasm-std.mac ($@)"
34 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c" nasm_standard_mac source/patched-yasm/modules/parsers/nasm/nasm-std.mac
43 $(gyp_intermediate_dir)/third_party/yasm/nasm-version.c: $(gyp_shared_intermediate_dir)/genmacro $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac $(GYP_TARGET_DEPENDENCIES)
44 @echo "Gyp action: yasm genmacro for $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac ($@)"
45 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-version.c" nasm_version_mac "$(gyp_shared_intermediate_dir)/third_party/yasm/version.mac"
54 $(gyp_intermediate_dir)/third_party/yasm/win64-gas.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-gas.mac $(GYP_TARGET_DEPENDENCIES)
55 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/objfmts/coff/win64-gas.mac ($@)"
56 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/win64-gas.c" win64_gas_stdmac source/patched-yasm/modules/objfmts/coff/win64-gas.mac
65 $(gyp_intermediate_dir)/third_party/yasm/win64-nasm.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-nasm.mac $(GYP_TARGET_DEPENDENCIES
    [all...]
yasm.host.linux-x86.mk 32 $(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/parsers/nasm/nasm-std.mac $(GYP_TARGET_DEPENDENCIES)
33 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/parsers/nasm/nasm-std.mac ($@)"
34 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c" nasm_standard_mac source/patched-yasm/modules/parsers/nasm/nasm-std.mac
43 $(gyp_intermediate_dir)/third_party/yasm/nasm-version.c: $(gyp_shared_intermediate_dir)/genmacro $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac $(GYP_TARGET_DEPENDENCIES)
44 @echo "Gyp action: yasm genmacro for $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac ($@)"
45 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-version.c" nasm_version_mac "$(gyp_shared_intermediate_dir)/third_party/yasm/version.mac"
54 $(gyp_intermediate_dir)/third_party/yasm/win64-gas.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-gas.mac $(GYP_TARGET_DEPENDENCIES)
55 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/objfmts/coff/win64-gas.mac ($@)"
56 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/win64-gas.c" win64_gas_stdmac source/patched-yasm/modules/objfmts/coff/win64-gas.mac
65 $(gyp_intermediate_dir)/third_party/yasm/win64-nasm.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-nasm.mac $(GYP_TARGET_DEPENDENCIES
    [all...]
yasm.host.linux-x86_64.mk 32 $(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/parsers/nasm/nasm-std.mac $(GYP_TARGET_DEPENDENCIES)
33 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/parsers/nasm/nasm-std.mac ($@)"
34 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-macros.c" nasm_standard_mac source/patched-yasm/modules/parsers/nasm/nasm-std.mac
43 $(gyp_intermediate_dir)/third_party/yasm/nasm-version.c: $(gyp_shared_intermediate_dir)/genmacro $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac $(GYP_TARGET_DEPENDENCIES)
44 @echo "Gyp action: yasm genmacro for $(gyp_shared_intermediate_dir)/third_party/yasm/version.mac ($@)"
45 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/nasm-version.c" nasm_version_mac "$(gyp_shared_intermediate_dir)/third_party/yasm/version.mac"
54 $(gyp_intermediate_dir)/third_party/yasm/win64-gas.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-gas.mac $(GYP_TARGET_DEPENDENCIES)
55 @echo "Gyp action: yasm genmacro for source/patched-yasm/modules/objfmts/coff/win64-gas.mac ($@)"
56 $(hide)cd $(gyp_local_path)/third_party/yasm; mkdir -p $(gyp_intermediate_dir)/third_party/yasm; "$(gyp_shared_intermediate_dir)/genmacro" "$(gyp_intermediate_dir)/third_party/yasm/win64-gas.c" win64_gas_stdmac source/patched-yasm/modules/objfmts/coff/win64-gas.mac
65 $(gyp_intermediate_dir)/third_party/yasm/win64-nasm.c: $(gyp_shared_intermediate_dir)/genmacro $(LOCAL_PATH)/third_party/yasm/source/patched-yasm/modules/objfmts/coff/win64-nasm.mac $(GYP_TARGET_DEPENDENCIES
    [all...]

Completed in 461 milliseconds

<<11121314151617181920>>