HomeSort by relevance Sort by last modified time
    Searched full:seal (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/libsrtp/srtp/
timing 18 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
27 plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines
36 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/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/regress/
regress-builtinbust-1.js 7 Object.seal(a);
regress-builtinbust-4.js 8 Object.seal(o);
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/mjsunit/
object-seal.js 28 // Tests the Object.seal and Object.isSealed methods - ES 15.2.3.9 and
38 Object.seal(non_objects[key]);
41 assertTrue(/Object.seal called on non-object/.test(e));
72 Object.seal(obj);
96 // Since writable is not affected by seal we should still be able to
115 Object.seal(obj2);
132 // Test seal on arrays.
147 Object.seal(arr);
193 // Make sure that Object.seal returns the sealed object.
195 assertTrue(obj4 === Object.seal(obj4))
    [all...]
  /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/tcpdump/
rpc_auth.h 53 SUNRPC_AUTH_BADCRED=1, /* bogus credentials (seal broken) */
55 SUNRPC_AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /external/chromium_org/ui/file_manager/file_manager/audio_player/js/
audio_player_model.js 69 Object.seal(this);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
app_installer.js 18 Object.seal(this);
text_measure.js 37 Object.seal(this);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
crypto_types.h 115 * @brief SEAL 3.0
117 * SEAL is the Software-Optimized Encryption Algorithm of Coppersmith
120 #define SEAL 2
sha1.h 92 * here because it is also used by the cipher SEAL 3.0 in its key
  /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/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpc/
auth.h 57 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
59 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
auth.h 57 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
59 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /external/chromium_org/third_party/openssl/openssl/patches/
aead_support.patch 301 + * algorithms take a key and then can seal and open individual messages. Each
590 + r = ctx->aead->seal(ctx, out, max_out_len, nonce, nonce_len,
691 + ssize_t (*seal) (const struct evp_aead_ctx_st *ctx,
755 +With an B<EVP_AEAD_CTX> in hand, one can seal and open messages. These
772 +The "seal" and "open" operations are atomic - an entire message must be
786 +The "seal" and "open" operations also permit additional data to be
788 +ciphertext and must be identical for both the "seal" and "open" call. This
791 +The "seal" and "open" operations may work inplace if the B<out> and B<in>
799 +The "seal" and "open" operations return an C<ssize_t> with value -1 on error,
  /external/chromium_org/components/nacl/loader/sandbox_linux/
nacl_sandbox_linux.h 59 // Seal the layer-1 sandbox, making it enforcing.
  /external/chromium_org/ui/file_manager/file_manager/common/js/
progress_center_common.js 118 Object.seal(this);

Completed in 554 milliseconds

1 2 3 4 5