HomeSort by relevance Sort by last modified time
    Searched full:algo (Results 126 - 150 of 267) sorted by null

1 2 3 4 56 7 8 91011

  /external/iptables/tests/
options-most.rules 12 -A INPUT -p tcp -m cluster --cluster-local-nodemask 0x00000001 --cluster-total-nodes 2 --cluster-hash-seed 0x00000001 -m cluster --cluster-local-nodemask 0x00000001 --cluster-total-nodes 2 --cluster-hash-seed 0x00000001 -m comment --comment foo -m connbytes --connbytes 1:2 --connbytes-mode packets --connbytes-dir both -m connlimit --connlimit-upto 1 --connlimit-mask 8 --connlimit-saddr -m connlimit --connlimit-above 1 --connlimit-mask 9 --connlimit-daddr -m connmark --mark 0x99 -m conntrack --ctstate INVALID --ctproto 6 --ctorigsrc fe80::/64 --ctorigdst fe80::/64 --ctreplsrc fe80::/64 --ctrepldst fe80::/64 --ctorigsrcport 12 --ctorigdstport 13 --ctreplsrcport 14 --ctrepldstport 15 --ctstatus EXPECTED --ctexpire 1:2 --ctdir REPLY -m cpu --cpu 2 -m dscp --dscp 0x04 -m dscp --dscp 0x00 -m hashlimit --hashlimit-upto 1/sec --hashlimit-burst 5 --hashlimit-mode srcip,dstip --hashlimit-name f1 --hashlimit-htable-size 64 --hashlimit-htable-max 128 --hashlimit-htable-gcinterval 60 --hashlimit-htable-expire 120 --hashlimit-srcmask 24 --hashlimit-dstmask 24 -m hashlimit --hashlimit-above 5/sec --hashlimit-burst 5 --hashlimit-name f1 -m helper --helper ftp -m iprange --src-range ::1-::2 --dst-range ::1-::2 -m ipvs --vaddr fe80::/64 --vport 1 --vdir REPLY --vmethod GATE --vportctl 21 -m length --length 1:2 -m limit --limit 1/sec -m mac --mac-source 01:02:03:04:05:06 -m mark --mark 0x1 -m physdev --physdev-in eth0 -m pkttype --pkt-type unicast -m policy --dir in --pol ipsec --strict --reqid 1 --spi 0x1 --proto esp --mode tunnel --tunnel-dst fe80::/64 --tunnel-src fe80::/64 --next --reqid 2 -m quota --quota 0 -m recent --rcheck --name DEFAULT --rsource -m socket --transparent -m string --string "foobar" --algo kmp --from 1 --to 2 --icase -m time --timestart 01:02:03 --timestop 03:04:05 --monthdays 1,2,3,4,5 --weekdays Mon,Fri,Sun --datestart 2001-02-03T04:05:06 --datestop 2012-09-08T09:06:05 --utc -m tos --tos 0xff/0x01 -m u32 --u32 "0x0=0x0" -m u32 --u32 "0x0=0x0" -m hbh -m hbh -m hl --hl-eq 1
39 -A INPUT -p tcp -m string --string "foobar" --algo kmp --from 1 --to 2 --icase
40 -A INPUT -p tcp -m string --hex-string "|00|" --algo kmp --from 1 --to 2 --icase
133 -A matches -m string --hex-string "action=|5C22|http|3A|" --algo bm
135 -A matches -m string --hex-string "action=|5C|http|3A|" --algo bm
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 36 * vpx_codec_ctx_t algo;
37 * res = vpx_codec_init(&algo, &my_codec);
  /external/libvpx/libvpx/vpx/
vpx_codec.h 31 * vpx_codec_ctx_t algo;
32 * res = vpx_codec_init(&algo, &my_codec);
  /external/srtp/crypto/hash/
sha1.c 295 * compression algo.
345 /* we need to do one final run of the compression algo */
  /external/tcpdump/
print-esp.c 255 (*ndo->ndo_warning)(ndo, "failed to find cipher algo %s\n", decode);
390 /* if there is only one token, then it is an algo:key token */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
vpx_codec_internal.h 36 * vpx_codec_ctx_t algo;
37 * res = vpx_codec_init(&algo, &my_codec);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_codec.h 31 * vpx_codec_ctx_t algo;
32 * res = vpx_codec_init(&algo, &my_codec);
  /external/toybox/lib/
lib.h 194 int get_salt(char *salt, char * algo);
  /external/vboot_reference/futility/
cmd_vbutil_keyblock.c 58 " --pem_algorithm <algo>\n"
  /frameworks/base/docs/html-intl/intl/es/design/patterns/
confirming-acknowledging.jd 44 <p>En este ejemplo, si el usuario navega con los botones Back o Up desde la pantalla de redacción de Gmail, posiblemente ocurrirá algo inesperado: el borrador actual se guardará automáticamente. Esto se mostrará a través de un reconocimiento en forma de aviso. Dicho aviso desaparece luego de algunos segundos.</p>
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/cert/
X509CertificateTest.java 569 private String algo; field in class:X509CertificateTest.MyModifiablePublicKey
582 return algo;
612 this.algo = myAlgo;
  /external/mdnsresponder/mDNSCore/
DNSDigest.c 1443 domainname * algo; local
    [all...]
  /external/lzma/C/
LzmaEnc.c 49 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1;
62 if (p->algo < 0) p->algo = (level < 5 ? 0 : 1);
64 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1);
70 ((p->btMode && p->algo) ? 2 : 1);
413 p->fastMode = (props.algo == 0);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
Recents.java 532 TaskStackViewLayoutAlgorithm algo = mDummyStackView.getStackAlgorithm(); local
535 algo.computeRects(mWindowRect.width(), mWindowRect.height(), taskStackBounds);
536 Rect taskViewSize = algo.getUntransformedTaskViewSize();
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
TagBalancingHtmlStreamRendererTest.java 207 // tree building algo.
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 406 * Reset the filters except if the algo is switched off
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CaptureRequestTest.java     [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 274 private static final String algo = "testPublicKeyAlgorithm"; field in class:TestCertUtils.TestPublicKey
282 return algo;
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.hpp 197 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentCompression
215 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentEncryption
  /external/libvpx/libwebm/
mkvparser.hpp 197 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentCompression
215 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentEncryption
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 553 private static byte[] getCertHash(Signature signature, String algo) {
555 MessageDigest md = MessageDigest.getInstance(algo);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.hpp 222 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentCompression
240 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentEncryption
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 214 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentCompression
223 unsigned long long algo; member in struct:mkvparser::ContentEncoding::ContentEncryption
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Utils.c     [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 278 private static final String algo = "testPublicKeyAlgorithm"; field in class:TestCertUtils.TestPublicKey
286 return algo;

Completed in 808 milliseconds

1 2 3 4 56 7 8 91011