HomeSort by relevance Sort by last modified time
    Searched refs:k1 (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
dct.cpp 42 Int k0, k1, k2, k3, k4, k5, k6, k7; local
63 k1 = mask & (tmp << 1);
64 k0 = k1 - (k0 << 1);
65 k1 = (tmp2 >> 8) & 0xFF;
67 k1 = k2 - (k1 << 1);
94 k1 = k1 + k6;
95 k6 = k1 - (k6 << 1);
103 k1 = k1 + k2
271 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
477 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
656 Int k0, k1, k2, k3, k4, k5, k6, k7; local
867 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
1054 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
    [all...]
dct_inline.h 42 int32 k1; local
46 k1 = k0 * 392 + round;
48 return k1;
51 __inline int32 mla554(int32 k4, int32 k12, int32 k1)
57 k0 = k4 * 554 + k1;
62 __inline int32 mla1338(int32 k6, int32 k14, int32 k1)
68 out = k6 * 1338 + k1;
73 __inline int32 mla946(int32 k6, int32 k14, int32 k1)
79 out = k6 * 946 + k1;
84 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3
127 int32 k1; local
131 smlabt k1, k0, k14, round local
191 int32 k1; local
195 mov k1, k14, asr #16 local
196 mla k1, k0, k1, round local
250 eors abs_sum, k1, k1, asr #31 ; local
    [all...]
  /external/openssl/crypto/des/
rpw.c 64 DES_cblock k,k1; local
78 if ((i=des_read_2passwords(&k,&k1,
87 printf("%02x ",k1[i]);
ofb64ede.c 67 DES_key_schedule *k1, DES_key_schedule *k2,
94 DES_encrypt3(ti,k1,k2,k3);
120 register unsigned char *out, long length, DES_key_schedule k1,
123 DES_ede3_ofb64_encrypt(in, out, length, k1,k2,k1, ivec, num);
des_old.h 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\
139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e))
140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n)
    [all...]
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n)
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableSortedMapFauxverideShim.java 53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
67 K k1, V v1, K k2, V v2) {
82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
ImmutableBiMap.java 61 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) {
62 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1));
70 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
71 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
80 K k1, V v1, K k2, V v2, K k3, V v3) {
82 k1, v1, k2, v2, k3, v3));
91 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
93 k1, v1, k2, v2, k3, v3, k4, v4));
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
104 k1, v1, k2, v2, k3, v3, k4, v4, k5, v5))
    [all...]
ImmutableListMultimap.java 66 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) {
69 builder.put(k1, v1);
76 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
79 builder.put(k1, v1);
88 K k1, V v1, K k2, V v2, K k3, V v3) {
91 builder.put(k1, v1);
101 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
104 builder.put(k1, v1);
115 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
118 builder.put(k1, v1)
    [all...]
ImmutableMap.java 73 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) {
75 checkNotNull(k1), checkNotNull(v1));
83 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) {
84 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
93 K k1, V v1, K k2, V v2, K k3, V v3) {
95 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
104 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
106 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
115 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
116 return new RegularImmutableMap<K, V>(entryOf(k1, v1)
    [all...]
ImmutableSetMultimap.java 69 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) {
71 builder.put(k1, v1);
80 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
82 builder.put(k1, v1);
93 K k1, V v1, K k2, V v2, K k3, V v3) {
95 builder.put(k1, v1);
107 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
109 builder.put(k1, v1);
122 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
124 builder.put(k1, v1)
    [all...]
ImmutableMultimap.java 61 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1) {
62 return ImmutableListMultimap.of(k1, v1);
68 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
69 return ImmutableListMultimap.of(k1, v1, k2, v2);
76 K k1, V v1, K k2, V v2, K k3, V v3) {
77 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
84 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
85 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
92 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
93 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5)
    [all...]
  /external/svox/pico/lib/
picofftsg.c 670 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
693 k1 = k + m2;
696 yr = a[k1];
697 yi = a[k1 + 1];
700 a[k1] = xr;
701 a[k1 + 1] = xi;
703 k1 -= m;
706 yr = a[k1];
707 yi = a[k1 + 1];
710 a[k1] = xr
1029 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
1583 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh; local
    [all...]
  /external/openssl/crypto/des/t/
test 20 ($k1,$k2)=DES::string_to_2keys($str);
21 @a=split(//,$k1);
  /external/openssl/include/openssl/
des_old.h 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\
139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e))
140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n)
    [all...]
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n)
    [all...]
  /external/webkit/WebCore/platform/graphics/filters/
FEComposite.cpp 36 const float& k1, const float& k2, const float& k3, const float& k4)
41 , m_k1(k1)
49 const float& k1, const float& k2, const float& k3, const float& k4)
51 return adoptRef(new FEComposite(in, in2, type, k1, k2, k3, k4));
64 float FEComposite::k1() const function in class:WebCore::FEComposite
69 void FEComposite::setK1(float k1)
71 m_k1 = k1;
105 float k1, float k2, float k3, float k4)
107 float scaledK1 = k1 / 255.f;
FEComposite.h 51 float k1() const;
  /external/bzip2/
bzlib.c 538 UChar k1; local
565 BZ_GET_FAST(k1); BZ_RAND_UPD_MASK;
566 k1 ^= BZ_RAND_MASK; s->nblock_used++;
568 if (k1 != s->k0) { s->k0 = k1; continue; };
571 BZ_GET_FAST(k1); BZ_RAND_UPD_MASK;
572 k1 ^= BZ_RAND_MASK; s->nblock_used++;
574 if (k1 != s->k0) { s->k0 = k1; continue; };
577 BZ_GET_FAST(k1); BZ_RAND_UPD_MASK;
708 UChar k1; local
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
sbr_generate_high_freq.cpp 487 Int32 *k1; local
497 k1 = scratch_mem;
538 k1[loBand] = - quotient.quotient >> quotient.shift_factor;
544 k1[loBand] = (Int32)0xC0000000; /* -1.0 in Q30 */
548 k1[loBand] = 0x40000000; /* 1.0 in Q30 */
552 k1[loBand] = -quotient.quotient;
559 k1[loBand] = (Int32)0xC0000000; /* -1.0 in Q30 */
563 k1[loBand] = 0x40000000; /* 1.0 in Q30 */
634 k1[loBand] = 0;
639 k1[0] = 0
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_generate_high_freq.cpp 487 Int32 *k1; local
497 k1 = scratch_mem;
538 k1[loBand] = - quotient.quotient >> quotient.shift_factor;
544 k1[loBand] = (Int32)0xC0000000; /* -1.0 in Q30 */
548 k1[loBand] = 0x40000000; /* 1.0 in Q30 */
552 k1[loBand] = -quotient.quotient;
559 k1[loBand] = (Int32)0xC0000000; /* -1.0 in Q30 */
563 k1[loBand] = 0x40000000; /* 1.0 in Q30 */
634 k1[loBand] = 0;
639 k1[0] = 0
    [all...]
  /external/webkit/WebCore/svg/
SVGFECompositeElement.idl 42 readonly attribute SVGAnimatedNumber k1;
SVGFECompositeElement.h 43 DECLARE_ANIMATED_PROPERTY(SVGFECompositeElement, SVGNames::k1Attr, float, K1, k1)
  /external/icu4c/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
170 coll->getCollationKey(lastWord, k1, status);
176 msg.append("key1: ").append(prettify(k1, str)).append("\n");
288 CollationKey k1, k2;
289 c.getCollationKey(s1, k1, status);
295 errln((UnicodeString)" key1: " + prettify(k1, t1) );
301 CollationKey k1, k2;
302 c.getCollationKey(s1, k1, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /external/v8/src/mips/
register-allocator-mips-inl.h 76 27, // k1
116 k1,

Completed in 475 milliseconds

1 2 3