HomeSort by relevance Sort by last modified time
    Searched defs:k4 (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/clang/test/Lexer/
cxx1y_binary_literal.cpp 20 int k4 = 0b; // expected-error {{invalid digit 'b' in octal constant}} variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 26 void k4() { function
  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 9 static constexpr double k4 = k2; member in union:U1
10 static const double k5 = k4; // expected-error {{requires 'constexpr' specifier}} expected-note {{add 'constexpr'}}
18 const double U1::k4; member in class:U1
  /external/clang/test/Modules/
template-specialization-visibility.cpp 20 int k4 = explicit_inst_member_class_template.n; variable
  /external/clang/test/PCH/
cxx11-enum-template.cpp 24 int k4 = (int)S<char>::E::e; member in struct:S
  /external/clang/test/CodeGenCXX/
static-data-member.cpp 101 static const int k4 = 81; member in union:test5::U
  /external/jemalloc/include/jemalloc/internal/
hash.h 181 uint32_t k4 = hash_get_block_32(blocks, i*4 + 3); local
198 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
211 uint32_t k4 = 0; local
214 case 15: k4 ^= tail[14] << 16;
215 case 14: k4 ^= tail[13] << 8;
216 case 13: k4 ^= tail[12] << 0
    [all...]
  /external/openssh/regress/unittests/sshkey/
test_sshkey.c 179 struct sshkey *k1, *k2, *k3, *k4, *kr, *kd, *kf; local
532 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k4), local
534 ASSERT_PTR_EQ(k4, NULL);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_logist.c 273 int k4; local
292 for(k4 = 0; k4 < 4; k4++)
fft.c 74 int16_t k0, k1, k2, k3, k4, kk; local
252 k4 = k3 + 4;
254 akpQx = RexQx[k1] + RexQx[k4];
255 akmQx = RexQx[k1] - RexQx[k4];
256 bkpQx = ImxQx[k1] + ImxQx[k4];
257 bkmQx = ImxQx[k1] - ImxQx[k4];
278 RexQx[k4] = akQx + bjQx;
280 ImxQx[k4] = bkQx - ajQx;
297 kk = k4 + 4;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 41 Int k0, k1, k2, k3, k4, k5, k6, k7; local
71 k4 = mask & (tmp >> 23);
72 k3 = k4 - (k3 << 1);
75 k4 = tmp2 & 0xFF;
77 k4 = k5 - (k4 << 1);
97 k3 = k3 + k4;
98 k4 = k3 - (k4 << 1);
111 k4 = k4 + k5
270 Int k0, k1, k2, k3, k4, k5, k6, k7; local
476 Int k0, k1, k2, k3, k4, k5, k6, k7; local
655 Int k0, k1, k2, k3, k4, k5, k6, k7; local
866 Int k0, k1, k2, k3, k4, k5, k6, k7; local
1053 Int k0, k1, k2, k3, k4, k5, k6, k7; local
    [all...]
dct_inline.h 49 __inline int32 mla554(int32 k4, int32 k12, int32 k1)
55 k0 = k4 * 554 + k1;
83 int32 k4, int32 k5, int32 k6, int32 k7)
95 carry = k4 >> 31;
96 abs_sum += (k4 ^ carry) - carry;
135 __inline int32 mla554(int32 k4, int32 k12, int32 k1)
141 smlabt k0, k4, k12, k1 local
200 __inline int32 mla554(int32 k4, int32 k12, int32 k1)
207 mla k0, k4, k0, k1 local
242 int32 k4, int32 k5, int32 k6, int32 k7
254 eors carry, k4, k4, asr #31 ; local
    [all...]
  /prebuilts/go/darwin-x86/test/
loopbce.go 189 func k4(a [100]int) [100]int { func
  /prebuilts/go/linux-x86/test/
loopbce.go 189 func k4(a [100]int) [100]int { func
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 100 int k4 = 123_ambig2; // expected-error {{ambiguous}} member in namespace:AmbiguousRawTemplate::N
  /external/skia/src/effects/
SkArithmeticImageFilter.cpp 33 ArithmeticImageFilterImpl(float k1, float k2, float k3, float k4, bool enforcePMColor,
35 : INHERITED(inputs, 2, cropRect), fK{k1, k2, k3, k4}, fEnforcePMColor(enforcePMColor) {}
95 k4 = k[3] * 255.0f + 0.5f; local
100 r = pin(0, k1*s*d + k2*s + k3*d + k4, 255);
112 k4 = k[3] * 255.0f + 0.5f; local
116 r = pin(0, k3*d + k4, 255);
210 static sk_sp<GrFragmentProcessor> Make(float k1, float k2, float k3, float k4,
213 new ArithmeticFP(k1, k2, k3, k4, enforcePMColor, std::move(dst)));
222 str.appendf("K1: %.2f K2: %.2f K3: %.2f K4: %.2f", fK1, fK2, fK3, fK4);
229 float k4() const { return fK4; function in class:__anon30932::ArithmeticFP
316 float k4 = d->fRandom->nextF(); local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.c 276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
600 k4 = k3 + kspan;
601 akp = Re [k1] + Re [k4];
602 akm = Re [k1] - Re [k4];
603 bkp = Im [k1] + Im [k4];
604 bkm = Im [k1] - Im [k4];
618 Re [k4] = ak + bj;
620 Im [k4] = bk - aj;
629 kk = k4 + kspan;
  /external/eigen/unsupported/Eigen/src/SpecialFunctions/
SpecialFunctionsImpl.h 1162 Scalar k1, k2, k3, k4, k5, k6, k7, k8, k26update; local
    [all...]
  /external/skia/tools/viewer/sk_app/
Window.h 74 k4, member in class:sk_app::Window::Key
  /external/tcpdump/
print-eigrp.c 109 uint8_t k4; member in struct:eigrp_tlv_general_parm_t
300 ND_PRINT((ndo, "\n\t holdtime: %us, k1 %u, k2 %u, k3 %u, k4 %u, k5 %u",
305 tlv_ptr.eigrp_tlv_general_parm->k4,
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 216 constexpr int k4 = c2.f(); // ok! member in namespace:UndefinedBehavior::Ptr
  /external/openssh/
umac.c 339 UINT32 k0,k1,k2,k3,k4,k5,k6,k7; local
348 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
349 h += MUL64((k0 + d0), (k4 + d4));
372 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
383 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
386 h1 += MUL64((k0 + d0), (k4 + d4));
387 h2 += MUL64((k4 + d0), (k8 + d4));
419 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
426 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
435 h1 += MUL64((k0 + d0), (k4 + d4))
474 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
    [all...]
  /external/clang/test/CXX/drs/
dr1xx.cpp 148 int k4 = f(&s.f); // expected-error {{non-constant pointer to member}} member in namespace:dr115
  /external/skia/fuzz/
FuzzCanvas.cpp 727 float k1, k2, k3, k4; local
730 fuzz->next(&k1, &k2, &k3, &k4, &enforcePMColor, &useCropRect);
737 return SkArithmeticImageFilter::Make(k1, k2, k3, k4, enforcePMColor,
    [all...]
  /external/webp/src/dsp/
dec_sse2.c 306 const __m128i k4 = _mm_set1_epi8(4); local
308 __m128i v4 = _mm_adds_epi8(*fl, k4);
382 const __m128i k4 = _mm_set1_epi8(4); local
401 t3 = _mm_adds_epi8(t1, k4); // 3 * (q0 - p0) + hev(p1 - q1) + 4
    [all...]

Completed in 584 milliseconds

1 2 3 4 5 6