HomeSort by relevance Sort by last modified time
    Searched full:second (Results 376 - 400 of 16670) sorted by null

<<11121314151617181920>>

  /external/testng/src/test/java/test/timeout/
TimeOutSampleTest.java 21 @Test(timeOut = 1_000 /* 1 second */)
  /external/v8/test/webkit/
eval-cache-crash.js 34 with ({a : "second"}) {
35 var second = eval(str)();
38 shouldBe("second", "'second'");
  /external/valgrind/massif/tests/
peak.c 10 free(p); // only every second one does.
  /external/webrtc/webrtc/modules/audio_processing/transient/
moving_moments.h 20 // Calculates the first and second moments for each value of a buffer taking
24 // buffer of second moments; and calculates the variances. When needed.
35 // |first| and |second| must be allocated with at least |in_length|.
37 float* first, float* second);
moving_moments.cc 34 float* first, float* second) {
35 assert(in && in_length > 0 && first && second);
45 second[i] = sum_of_squares_ / length_;
  /ndk/tests/device/test-stlport_shared-exception/jni/
spec2.cpp 3 // Test 2: the second throw succeeds.
  /ndk/tests/device/test-stlport_static-exception/jni/
spec2.cpp 3 // Test 2: the second throw succeeds.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7310.go 7 // Internal compiler crash used to stop errors during second copy.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7310.go 7 // Internal compiler crash used to stop errors during second copy.
  /external/libgdx/tests/gdx-tests-android/assets/data/
multipagefont.fnt 196 kerning first=121 second=44 amount=-2
197 kerning first=121 second=46 amount=-2
198 kerning first=102 second=102 amount=-1
199 kerning first=49 second=49 amount=-2
200 kerning first=89 second=44 amount=-4
201 kerning first=89 second=45 amount=-3
202 kerning first=89 second=46 amount=-4
203 kerning first=89 second=58 amount=-2
204 kerning first=89 second=59 amount=-2
205 kerning first=89 second=65 amount=-
    [all...]
  /development/ndk/samples/two-libs/jni/
Android.mk 32 # second lib, which will depend on and include the first one
36 LOCAL_MODULE := libtwolib-second
37 LOCAL_SRC_FILES := second.c
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
CrossoverPolicy.java 31 * @param second the second chromosome.
34 ChromosomePair crossover(Chromosome first, Chromosome second);
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
ui_test.html 121 decorate: function(_, second) {
122 this.second_ = second;
125 get second() {
139 decorate: function(first, second) {
141 this.second_ = second;
144 get second() {
171 var argsChild = new ArgsChild('this is first', 'and second');
173 assert.equal(argsChild.second, 'and second');
182 'this is first', 'and second');
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/
equal_range_const.pass.cpp 45 assert(std::distance(r.first, r.second) == 1);
47 assert(r.first->second == "thirty");
49 assert(std::distance(r.first, r.second) == 0);
52 assert(r.first->second == "fifty");
55 assert(r.first->second == "fiftyA");
58 assert(r.first->second == "fiftyB");
81 assert(std::distance(r.first, r.second) == 1);
83 assert(r.first->second == "thirty");
85 assert(std::distance(r.first, r.second) == 0);
88 assert(r.first->second == "fifty")
    [all...]
equal_range_non_const.pass.cpp 45 assert(std::distance(r.first, r.second) == 1);
47 assert(r.first->second == "thirty");
49 assert(std::distance(r.first, r.second) == 0);
52 assert(r.first->second == "fifty");
55 assert(r.first->second == "fiftyA");
58 assert(r.first->second == "fiftyB");
81 assert(std::distance(r.first, r.second) == 1);
83 assert(r.first->second == "thirty");
85 assert(std::distance(r.first, r.second) == 0);
88 assert(r.first->second == "fifty")
    [all...]
local_iterators.pass.cpp 56 assert(i->second == "one");
59 assert(i->second == "four");
66 assert(i->second == "two");
69 assert(i->second == "four");
76 assert(i->second == "three");
83 assert(i->second == "four");
120 assert(i->second == "one");
123 assert(i->second == "four");
130 assert(i->second == "two");
133 assert(i->second == "four")
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
copy_alloc.pass.cpp 57 assert(i->second == "one");
60 assert(i->second == "four");
63 assert(i->second == "two");
66 assert(i->second == "four");
69 assert(i->second == "three");
72 assert(i->second == "four");
111 assert(i->second == "one");
114 assert(i->second == "four");
117 assert(i->second == "two");
120 assert(i->second == "four")
    [all...]
  /external/libcxx/test/std/re/re.alg/re.alg.search/
egrep.pass.cpp 34 assert(m.prefix().second == m[0].first);
36 assert(m.suffix().first == m[0].second);
37 assert(m.suffix().second == s + std::char_traits<char>::length(s));
50 assert(m.prefix().second == m[0].first);
52 assert(m.suffix().first == m[0].second);
53 assert(m.suffix().second == s + std::char_traits<char>::length(s));
66 assert(m.prefix().second == m[0].first);
68 assert(m.suffix().first == m[0].second);
69 assert(m.suffix().second == s + std::char_traits<char>::length(s));
82 assert(m.prefix().second == m[0].first)
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
arrow.pass.cpp 24 assert(p->second == 4);
26 p->second = 6;
28 assert(p->second == 6);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
FPSLogger.java 23 * The output will be logged once per second.
33 /** Logs the current frames per second to the console. */
35 if (TimeUtils.nanoTime() - startTime > 1000000000) /* 1,000,000,000ns == one second */{
  /external/llvm/test/CodeGen/X86/
tail-call-legality.ll 8 ; As seen by Analysis.cpp: i64 -> i32 is a valid trunc, second i32 passes
27 %second = extractvalue {i64, i32} %whole, 1
30 %res = insertvalue {i32, i32, i32} %tmp, i32 %second, 1
  /external/ltrace/testsuite/
run-my-tests.sh 13 # second argument is used, it specifies the file name of the ltrace to be
16 # use the third argument, but not the second, specify the second as "".
  /external/srtp/
timing 14 # 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.da (…)
  /external/v8/test/unittests/interpreter/
bytecode-register-allocator-unittest.cc 37 int second; local
40 second = temporaries.NewRegister().index();
43 CHECK_EQ(first, second);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
bitrate.h 40 // Packet rate last second, updated roughly every 100 ms.
43 // Bitrate last second, updated roughly every 100 ms.
46 // Bitrate last second, updated now.

Completed in 6316 milliseconds

<<11121314151617181920>>