HomeSort by relevance Sort by last modified time
    Searched defs:f4 (Results 201 - 225 of 275) sorted by null

1 2 3 4 5 6 7 891011

  /external/dbus/dbus/
dbus-sha.c 104 #define f4(x,y,z) ( x ^ y ^ z ) /* Rounds 60-79 */ macro
248 subRound (A, B, C, D, E, f4, K4, expand ( eData, 60) );
249 subRound (E, A, B, C, D, f4, K4, expand ( eData, 61) );
250 subRound (D, E, A, B, C, f4, K4, expand ( eData, 62) );
251 subRound (C, D, E, A, B, f4, K4, expand ( eData, 63) );
252 subRound (B, C, D, E, A, f4, K4, expand ( eData, 64) );
253 subRound (A, B, C, D, E, f4, K4, expand ( eData, 65) );
254 subRound (E, A, B, C, D, f4, K4, expand ( eData, 66) );
255 subRound (D, E, A, B, C, f4, K4, expand ( eData, 67) );
256 subRound (C, D, E, A, B, f4, K4, expand ( eData, 68) )
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrShaderProgram.hpp 201 float f4[4]; member in union:sglr::UniformSlot::__anon9156
  /external/libchrome/crypto/
p224.cc 246 FieldElement f1, f2, f3, f4; local
271 Square(&f4, f3); // 2**49 - 2
273 Square(&f4, f4);
275 Mul(&f3, f3, f4); // 2**96 - 1
276 Square(&f4, f3); // 2**97 - 2
278 Square(&f4, f4);
280 Mul(&f2, f4, f2); // 2**120 - 1
  /external/libjpeg-turbo/simd/
jsimd_mips_dspr2_asm.h 63 #define f4 $f4 macro
  /external/v8/test/mjsunit/es6/
destructuring.js 804 function f4({a = x}) { const x = 2; return a; } function
805 assertEquals(1, f4({}));
913 function f4({a = eval("'use strict'; x")}, x) { return a }
914 assertThrows(() => f4({}, 4), ReferenceError);
915 assertEquals(4, f4({a: 4}, 5));
1024 function f4({x}) { { var y = x; var x = 2; } return y; }
1025 assertEquals(1, f4({x: 1}));
1104 function f4(x, {}) { x = 2; return arguments[0] }
1105 assertEquals(7, f4(7, {}));
  /external/clang/test/Analysis/
dead-stores.c 27 void f4(int k) { function
pr22954.c 89 int f4() { function
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 81 Agg<float> f4 = {1.0}; // OK (double constant represented exactly) local
125 Agg<float> f4 = {12345678}; // OK (exactly fits in a float) local
  /external/clang/test/CodeGenCXX/
temporaries.cpp 105 void f4() { function
  /external/clang/test/Index/
print-type-size.cpp 91 struct forward_decl f4; member in union:Incomplete::named
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 247 template<typename T> void f4() { function in namespace:PR18653
250 template void f4<int>();
421 template<typename T> void f4() { function in namespace:PR21332
426 template void f4<int>(); // expected-note{{in instantiation of function template specialization 'PR21332::f4<int>' requested here}}
  /external/compiler-rt/lib/tsan/rtl/
tsan_ppc_regs.h 37 #define f4 4 macro
  /external/libweave/third_party/chromium/crypto/
p224.cc 275 FieldElement f1, f2, f3, f4; local
300 Square(&f4, f3); // 2**49 - 2
302 Square(&f4, f4);
304 Mul(&f3, f3, f4); // 2**96 - 1
305 Square(&f4, f3); // 2**97 - 2
307 Square(&f4, f4);
309 Mul(&f2, f4, f2); // 2**120 - 1
  /external/tcpdump/
print-smb.c 338 const char *f1, *f2, *f3, *f4; local
352 f4 = "|Data ";
362 f4 = "|Data ";
387 smb_fdata(ndo, data, f4, min(data + datalen, maxbuf), unicodestr);
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 411 Label small_handlers, f0, f1, f2, f3, f4, f5_8; local
432 __ bind(&f4);
449 __ dd(conv.address(&f4));
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c 345 float f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13; local
356 "lwc1 %[f4], 4(%[aRe]) \n\t"
361 "mul.s %[f9], %[f4], %[f5] \n\t"
362 "mul.s %[f4], %[f4], %[f6] \n\t"
378 "add.s %[f4], %[f4], %[f12] \n\t"
389 "madd.s %[f4], %[f4], %[f7], %[f5] \n\t"
397 "add.s %[f5], %[f5], %[f4] \n\t
465 float f0, f1, f2, f3, f4, f5, f6 ,f7, f8, f9, f10, f11, f12; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 155 def f4(two, (compound, (argument, list))): pass function in function:GrammarTests.testFuncdef
160 self.assertEquals(f4.func_code.co_varnames,
166 self.assertEquals(f4.func_code.co_varnames,
182 f4(1, (2, (3, 4)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 155 def f4(two, (compound, (argument, list))): pass function in function:GrammarTests.testFuncdef
160 self.assertEquals(f4.func_code.co_varnames,
166 self.assertEquals(f4.func_code.co_varnames,
182 f4(1, (2, (3, 4)))
  /system/bt/stack/smp/
aes.c 82 #define f4(x) ((x << 2) ^ (((x >> 6) & 1) * WPOLY) ^ (((x >> 6) & 2) * WPOLY)) macro
90 #define fd(x) (f8(x) ^ f4(x) ^ x)
91 #define fe(x) (f8(x) ^ f4(x) ^ f2(x))
  /art/compiler/jni/
jni_compiler_test.cc 1577 jfloat f4 = bit_cast<jfloat, jint>(14); local
1647 jfloat f4 = bit_cast<jfloat, jint>(14); local
1716 jfloat f4 = bit_cast<jfloat, jint>(14); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.java 118 Float4 f4 = new Float4(); local
119 f4.x = 1.0f;
120 f4.y = 2.0f;
121 f4.x = 3.0f;
122 f4.w = 4.0f;
123 f4 = new Float4(1.0f, 2.0f, 3.0f, 4.0f);
124 assertTrue(f4.x == 1.0f);
125 assertTrue(f4.y == 2.0f);
126 assertTrue(f4.z == 3.0f);
127 assertTrue(f4.w == 4.0f)
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 111 IntentFilter f4 = new IntentFilter(); typedefs
112 f4.addCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK);
113 f4.addAction(MediaControlIntent.ACTION_ENQUEUE);
114 f4.addDataScheme("http");
115 f4.addDataScheme("https");
116 f4.addDataScheme("rtsp");
117 f4.addDataScheme("file");
118 addDataTypeUnchecked(f4, "video/*");
137 CONTROL_FILTERS_QUEUING.add(f4); typedefs
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 111 IntentFilter f4 = new IntentFilter(); typedefs
112 f4.addCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK);
113 f4.addAction(MediaControlIntent.ACTION_ENQUEUE);
114 f4.addDataScheme("http");
115 f4.addDataScheme("https");
116 f4.addDataScheme("rtsp");
117 f4.addDataScheme("file");
118 addDataTypeUnchecked(f4, "video/*");
137 CONTROL_FILTERS_QUEUING.add(f4); typedefs
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/provider/
SampleMediaRouteProvider.java 111 IntentFilter f4 = new IntentFilter(); typedefs
112 f4.addCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK);
113 f4.addAction(MediaControlIntent.ACTION_ENQUEUE);
114 f4.addDataScheme("http");
115 f4.addDataScheme("https");
116 f4.addDataScheme("rtsp");
117 f4.addDataScheme("file");
118 addDataTypeUnchecked(f4, "video/*");
137 CONTROL_FILTERS_QUEUING.add(f4); typedefs
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 271 constexpr float f4 = 1e38f / -.2938f; // expected-error {{constant expression}} expected-note {{floating point arithmetic produces an infinity}} member in namespace:UndefinedBehavior::Overflow

Completed in 1080 milliseconds

1 2 3 4 5 6 7 891011