HomeSort by relevance Sort by last modified time
    Searched refs:times (Results 151 - 175 of 580) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/suite/cts/deviceTests/opengl/jni/primitive/
GLPrimitive.cpp 59 // Sets the times in the Java array.
60 double times[] = {start, end}; local
61 env->SetDoubleArrayRegion(frameTimes, 0, 2, times);
  /external/chromium_org/chrome/browser/resources/task_manager/
measure_time.js 6 * @fileoverview Utility methods for measuring loading times.
  /external/chromium_org/third_party/icu/source/test/intltest/
caltest.h 166 SimpleDateFormat *sdf, int32_t times, UErrorCode& status);
169 int times, UCalendarDateFields field, UCalendarDateFields field2,
tzfmttst.cpp 245 UDate *times; member in struct:LocaleData
284 UDate times[NUM_PATTERNS]; local
286 times[i] = 0;
294 data.times[i] += times[i];
314 times[patidx] = 0;
426 times[patidx] += (Calendar::getNow() - timer);
474 UDate times[NUM_PATTERNS]; local
476 times[i] = 0;
506 data.times = times
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
ldlinux-sects.asm 9 times 0x2410 db 0x1 label
13 times 0x2A0 db 0x3 label
15 times 0x23 db 0x4 label
21 times 0x590 db 0x2 label
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
SyncSampleIntersectFinderImpl.java 73 List<long[]> times = getSyncSamplesTimestamps(movie, track); local
74 final long[] commonIndices = getCommonIndices(track.getSyncSamples(), getTimes(track, movie), track.getTrackMetaData().getTimescale(), times.toArray(new long[times.size()][]));
163 List<long[]> times = new LinkedList<long[]>(); local
169 times.add(currentTrackTimes);
173 return times;
183 for (long[] times : otherTracksTimes) {
184 foundInEveryRef &= (Arrays.binarySearch(times, syncSampleTimes[i]) >= 0);
195 // nuSyncSampleTimes: Contains the times of all sync samples
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 64 public Point times(float s) { method in class:Point
81 return this.times(length / this.length());
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_subpel_variance.asm 14 pw_8: times 8 dw 8
15 bilin_filter_m_sse2: times 8 dw 16
16 times 8 dw 0
17 times 8 dw 15
18 times 8 dw 1
19 times 8 dw 14
20 times 8 dw 2
21 times 8 dw 13
22 times 8 dw 3
23 times 8 dw 1
    [all...]
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 164 void set_times_bind_texture_succeeds(int times) {
165 times_bind_texture_succeeds_ = times;
167 void set_times_end_query_succeeds(int times) {
168 times_end_query_succeeds_ = times;
170 void set_times_gen_mailbox_succeeds(int times) {
171 times_gen_mailbox_succeeds_ = times;
175 // this many times.
176 void set_times_map_image_chromium_succeeds(int times) {
177 times_map_image_chromium_succeeds_ = times;
179 void set_times_map_buffer_chromium_succeeds(int times) {
    [all...]
  /external/valgrind/main/exp-bbv/tests/x86/
rep_prefix.S 3 # only count as one instruction, even though they repeat many times
43 rep stosb # store d 16384 times, auto-increment
49 rep lodsb # load byte 16384 times, auto-increment
60 rep stosw # store 8192 times, auto-increment
66 rep lodsw # load 8192 times, auto-increment
77 rep stosl # store 4096 times, auto-increment
83 rep lodsl # load 4096 times, auto-increment
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 45 const int *const inputYCoordinates, const int *const times, const int *const pointerIds,
51 if (times) {
54 i, inputXCoordinates[i], inputYCoordinates[i], times[i]);
59 if (times) {
62 if (times[i] < times[i - 1]) {
63 AKLOGI("Invalid time sequence. %d, %d", times[i - 1], times[i]);
104 const int time = times ? times[i] : -1
    [all...]
proximity_info_state.cpp 36 const int *const xCoordinates, const int *const yCoordinates, const int *const times,
41 inputSize, xCoordinates, yCoordinates, times, mSampledInputSize,
102 mMaxPointToKeyLength, mInputProximities, xCoordinates, yCoordinates, times,
110 yCoordinates, times, lastSavedInputSize, mSampledInputSize, &mSampledInputXs,
114 mAverageSpeed, inputSize, xCoordinates, yCoordinates, times, mSampledInputSize,
proximity_info_state_utils.h 41 const int *const times, const int *const pointerIds, const int inputSize,
52 const int *const yCoordinates, const int *const times, const int lastSavedInputSize,
61 const int *times, const int sampledInputSize,
105 const int *const xCoordinates, const int *const yCoordinates, const int *const times,
144 const int *const yCoordinates, const int *times, const int sampledInputSize,
  /external/mockito/src/org/mockito/
Mockito.java 129 * of how many times it is called. </li>
132 * the same arguments many times.
207 * mockedList.add("three times");
208 * mockedList.add("three times");
209 * mockedList.add("three times");
211 * //following two verifications work exactly the same - times(1) is used by default
213 * verify(mockedList, times(1)).add("once");
216 * verify(mockedList, times(2)).add("twice");
217 * verify(mockedList, times(3)).add("three times");
1937 public static VerificationMode times(int wantedNumberOfInvocations) { method in class:Mockito
    [all...]
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
TextToSpeechTests.java 73 LittleMock.verify(delegate, LittleMock.times(1)).onIsLanguageAvailable(
75 LittleMock.verify(delegate, LittleMock.times(1)).onLoadLanguage(
94 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req.capture(),
116 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req2.capture(),
134 LittleMock.verify(delegate, LittleMock.times(1)).onIsLanguageAvailable(
  /external/chromium_org/chrome/test/perf/
feature_startup_test.cc 38 std::string times; local
40 base::StringAppendF(&times, "%.2f,", timings[i].InMillisecondsF());
42 "new_tab", std::string(), label, times, "ms", important);
shutdown_test.cc 115 std::string times; local
117 base::StringAppendF(&times, "%.2f,", timings[i].InMillisecondsF());
119 graph, std::string(), trace, times, "ms", important);
tab_switching_test.cc 34 // time taken for each switch. It then prints out the times on the console,
70 std::string times; local
72 base::StringAppendF(&times, "%.2f,", timings[i].InMillisecondsF());
74 "times", std::string(), label, times, "ms", important);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bnspeed.c 75 #define TIMES
81 #ifdef TIMES
83 #include <sys/times.h>
88 undefine TIMES, since that tells the rest of the program how things
91 #undef TIMES
94 #ifndef TIMES
107 /* The following if from times(3) man page. It may need to be changed */
131 #ifdef TIMES
136 times(&tstart);
141 times(&tend)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rc2/
rc2speed.c 63 #define TIMES
79 #ifdef TIMES
81 #include <sys/times.h>
86 undefine TIMES, since that tells the rest of the program how things
89 #undef TIMES
92 #ifndef TIMES
104 /* The following if from times(3) man page. It may need to be changed */
141 #ifdef TIMES
146 times(&tstart);
151 times(&tend)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4speed.c 63 #define TIMES
79 #ifdef TIMES
81 #include <sys/times.h>
86 undefine TIMES, since that tells the rest of the program how things
89 #undef TIMES
92 #ifndef TIMES
104 /* The following if from times(3) man page. It may need to be changed */
141 #ifdef TIMES
146 times(&tstart);
151 times(&tend)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
dct_mmx.asm 226 times 4 dw 1
229 times 4 dw 7
232 times 2 dd 14500
235 times 2 dd 7500
238 times 2 dd 12000
241 times 2 dd 51000
  /external/openssl/crypto/bn/
bnspeed.c 75 #define TIMES
81 #ifdef TIMES
83 #include <sys/times.h>
88 undefine TIMES, since that tells the rest of the program how things
91 #undef TIMES
94 #ifndef TIMES
107 /* The following if from times(3) man page. It may need to be changed */
131 #ifdef TIMES
136 times(&tstart);
141 times(&tend)
    [all...]
  /external/openssl/crypto/rc2/
rc2speed.c 63 #define TIMES
79 #ifdef TIMES
81 #include <sys/times.h>
86 undefine TIMES, since that tells the rest of the program how things
89 #undef TIMES
92 #ifndef TIMES
104 /* The following if from times(3) man page. It may need to be changed */
141 #ifdef TIMES
146 times(&tstart);
151 times(&tend)
    [all...]
  /external/openssl/crypto/rc4/
rc4speed.c 63 #define TIMES
79 #ifdef TIMES
81 #include <sys/times.h>
86 undefine TIMES, since that tells the rest of the program how things
89 #undef TIMES
92 #ifndef TIMES
104 /* The following if from times(3) man page. It may need to be changed */
141 #ifdef TIMES
146 times(&tstart);
151 times(&tend)
    [all...]

Completed in 477 milliseconds

1 2 3 4 5 67 8 91011>>