/external/srtp/ |
timing | 18 # timing.plt
#
# gnuplot script file for plotting the output generated by srtp_driver -t
#
# David A. McGrew
# Cisco Systems, Inc.
#
set xrange [0:2500]
set term pict "Times-Roman" 9
#
# plot authentication-only data
#
set title "Authentication Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:2000]
set output "plot-auth.pict"
plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines
#
# plot encryption-only data
#
set title "Encryption Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set output "plot-enc.pict"
set yrange [0:1200]
plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines
#
# plot encryption and authentication data
#
set title "Encryption and Authentication"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:1000]
set output "plot-enc-auth.pict"
plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AE (…)
|
/external/chromium_org/v8/test/mjsunit/ |
object-seal.js | 28 // Tests the Object.seal and Object.isSealed methods - ES 15.2.3.9 and 37 Object.seal(non_objects[key]); 40 assertTrue(/Object.seal called on non-object/.test(e)); 71 Object.seal(obj); 95 // Since writable is not affected by seal we should still be able to 114 Object.seal(obj2); 131 // Test seal on arrays. 146 Object.seal(arr); 192 // Make sure that Object.seal returns the sealed object. 194 assertTrue(obj4 === Object.seal(obj4)) [all...] |
/external/v8/test/mjsunit/ |
object-seal.js | 28 // Tests the Object.seal and Object.isSealed methods - ES 15.2.3.9 and 37 Object.seal(non_objects[key]); 40 assertTrue(/Object.seal called on non-object/.test(e)); 71 Object.seal(obj); 95 // Since writable is not affected by seal we should still be able to 114 Object.seal(obj2); 131 // Test seal on arrays. 146 Object.seal(arr); 192 // Make sure that Object.seal returns the sealed object. 194 assertTrue(obj4 === Object.seal(obj4)) [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1447.js | 29 [0].every(function(){ Object.seal(Array.prototype.every); }); 34 [0].every(function(){ Object.seal(Array.prototype.every); });
|
regress-842.js | 29 // changed (a property is added) after which freeze and seal would fail
|
regress-95920.js | 33 [0].every(function(){ Object.seal((new Int8Array(42))); });
|
/external/v8/test/mjsunit/regress/ |
regress-1447.js | 29 [0].every(function(){ Object.seal(Array.prototype.every); }); 34 [0].every(function(){ Object.seal(Array.prototype.every); });
|
regress-842.js | 29 // changed (a property is added) after which freeze and seal would fail
|
regress-95920.js | 33 [0].every(function(){ Object.seal((new Int8Array(42))); });
|
/external/chromium_org/v8/test/webkit/ |
preventExtensions.js | 25 "This test checks whether various seal/freeze/preventExtentions work on a regular object." 52 function seal(obj) function 54 Object.seal(obj); 74 seal(sealed); 89 shouldBe('test(seal(obj()))', '"(a:1)(b:4)S"'); // sealed, CANNOT delete a, can modify b, and CANNOT add c
|
preventExtensions-expected.txt | 24 This test checks whether various seal/freeze/preventExtentions work on a regular object. 34 PASS test(seal(obj())) is "(a:1)(b:4)S"
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies-hash.js | 73 TestSet(Set, Object.seal) 116 TestMap(Map, Object.seal) 120 TestMap(WeakMap, Object.seal)
|
/external/v8/test/mjsunit/harmony/ |
proxies-hash.js | 73 TestSet(Set, Object.seal) 116 TestMap(Map, Object.seal) 120 TestMap(WeakMap, Object.seal)
|
/external/tcpdump/ |
rpc_auth.h | 53 SUNRPC_AUTH_BADCRED=1, /* bogus credentials (seal broken) */ 55 SUNRPC_AUTH_BADVERF=3, /* bogus verifier (seal broken) */
|
/external/srtp/crypto/include/ |
crypto_types.h | 108 * @brief SEAL 3.0 110 * SEAL is the Software-Optimized Encryption Algorithm of Coppersmith 113 #define SEAL 2
|
sha1.h | 92 * here because it is also used by the cipher SEAL 3.0 in its key
|
/libcore/benchmarks/src/benchmarks/regression/ |
IntegerBenchmark.java | 100 * Table for Seal's algorithm for Number of Trailing Zeros. Hacker's Delight 112 // Seal's algorithm - Hacker's Delight 5-18
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/ |
auth.h | 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */ 62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
auth.h | 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */ 62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
auth.h | 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */ 62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/ |
SealedObjectTest.java | 104 assertEquals("The algorithm which was used to seal the object " 105 + "should be the same as the algorithm used to seal the "
|
/external/chromium_org/v8/test/webkit/fast/js/ |
Object-getOwnPropertyNames-expected.txt | 66 FAIL getSortedOwnPropertyNames(Object) should be create,defineProperties,defineProperty,freeze,getOwnPropertyDescriptor,getOwnPropertyNames,getPrototypeOf,isExtensible,isFrozen,isSealed,keys,length,name,preventExtensions,prototype,seal. Was arguments,caller,create,defineProperties,defineProperty,freeze,getOwnPropertyDescriptor,getOwnPropertyNames,getPrototypeOf,is,isExtensible,isFrozen,isSealed,keys,length,name,preventExtensions,prototype,seal.
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
SealedObjectTest.java | 145 assertEquals("The algorithm which was used to seal the object " 146 + "should be the same as the algorithm used to seal the "
|
/bionic/libc/arch-mips/bionic/ |
ffs.S | 37 * This is the ffs algorithm devised by d.seal and posted to comp.sys.arm on
|
/external/chromium_org/build/mac/ |
copy_framework_unversioned.sh | 17 # seal. In Chrome's case, the outer .app bundle contains a framework where
|