/external/stlport/test/unit/ |
times_test.cpp | 17 CPPUNIT_TEST(times); 21 void times(); 29 void TimesTest::times() function in class:TimesTest
|
/ndk/tests/device/test-gnustl-full/unit/ |
times_test.cpp | 17 CPPUNIT_TEST(times); 21 void times(); 29 void TimesTest::times() function in class:TimesTest
|
/ndk/tests/device/test-stlport/unit/ |
times_test.cpp | 17 CPPUNIT_TEST(times); 21 void times(); 29 void TimesTest::times() function in class:TimesTest
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Time.java | 45 c.set(Calendar.YEAR, in.times[0]); 46 c.set(Calendar.MONTH, in.times[1]-1); 47 c.set(Calendar.DAY_OF_MONTH, in.times[2]); 48 c.set(Calendar.HOUR_OF_DAY, in.times[3]); 49 c.set(Calendar.MINUTE, in.times[4]); 50 c.set(Calendar.SECOND, in.times[5]); 51 c.set(Calendar.MILLISECOND, in.times[6]);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
opt-struc.asm | 24 times HOSTENT.Name-($-..@44.strucstart) db 0 label 26 times HOSTENT.Aliases-($-..@44.strucstart) db 0 label 28 times HOSTENT.AddrList-($-..@44.strucstart) db 0 label 30 times HOSTENT_size-($-..@44.strucstart) db 0 label 34 times HOSTENT.Name-($-..@45.strucstart) db 0 label 36 times HOSTENT.Aliases-($-..@45.strucstart) db 0 label 38 times HOSTENT_size-($-..@45.strucstart) db 0 label
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
times.hpp | 9 // Preprocessed version of "boost/mpl/times.hpp" header 68 struct times struct in namespace:boost::mpl 69 : times< times< times< times< N1,N2 >, N3>, N4>, N5> 73 , times 81 struct times< N1,N2,N3,N4,na > struct in namespace:boost::mpl 83 : times< times< times< N1,N2 >, N3>, N4 95 struct times< N1,N2,N3,na,na > struct in namespace:boost::mpl 109 struct times< N1,N2,na,na,na > struct in namespace:boost::mpl [all...] |
/external/icu4c/test/perf/howExpensiveIs/ |
sieve.cpp | 81 double midpoint(double *times, double i, int n) { 86 return times[(int)fl]; 88 return (times[(int)fl]+times[(int)ce])/2; 92 double medianof(double *times, int n, int type) { 95 return midpoint(times,n/4,n); 97 return midpoint(times,n/2,n); 99 return midpoint(times,(n/2)+(n/4),n); 104 double qs(double *times, int n, double *q1, double *q2, double *q3) { 105 *q1 = medianof(times,n,1) 197 double times[SAMPLES]; local [all...] |
sieve.h | 23 * @param times array of times (modified/sorted) 28 U_INTERNAL double uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError);
|
/bionic/libc/upstream-netbsd/libc/gen/ |
utime.c | 50 utime(const char *path, const struct utimbuf *times) 56 if (times == (struct utimbuf *) NULL) 59 tv[0].tv_sec = times->actime; 60 tv[1].tv_sec = times->modtime;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/ |
strucalign.asm | 2 times (64-$) resb 1 label 4 times (128-($-$$)) resb 1 label
|
/bionic/libc/arch-arm/syscalls/ |
times.S | 6 ENTRY(times) function 15 END(times)
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
jmp64-5.asm | 5 times 0x10001 db 0x0 label
|
/external/qemu/ |
oslib-posix.c | 113 int qemu_utimensat(int dirfd, const char *path, const struct timespec *times, 122 ret = utimensat(dirfd, path, times, flags); 130 if (times[0].tv_nsec == UTIME_OMIT && times[1].tv_nsec == UTIME_OMIT) { 133 if (times[0].tv_nsec == UTIME_NOW && times[1].tv_nsec == UTIME_NOW) { 138 if (times[0].tv_nsec == UTIME_NOW || times[1].tv_nsec == UTIME_NOW) { 141 if (times[0].tv_nsec == UTIME_OMIT || times[1].tv_nsec == UTIME_OMIT) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
BoneTrack.java | 42 * Contains a list of transforms and times for each keyframe. 54 * Transforms and times for track. 59 private float[] times; field in class:BoneTrack 70 * @param times a float array with the time of each frame 74 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations) { 76 this.setKeyframes(times, translations, rotations); 82 * @param times a float array with the time of each frame 87 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) { 89 this.setKeyframes(times, translations, rotations, scales); 128 return times; 268 float[] times = this.times.clone(); local [all...] |
SpatialTrack.java | 37 * The times of the animations frames.
39 private float[] times;
field in class:SpatialTrack 47 * @param times
56 public SpatialTrack(float[] times, Vector3f[] translations,
58 setKeyframes(times, translations, rotations, scales);
78 int lastFrame = times.length - 1;
87 } else if (time >= times[lastFrame]) {
99 for (int i = 0; i < lastFrame && times[i] < time; ++i) {
104 float blend = (time - times[startFrame]) / (times[endFrame] - times[startFrame]); [all...] |
PoseTrack.java | 51 private float[] times; field in class:PoseTrack 97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){ 99 this.times = times; 123 if (time < times[0]) { 125 } else if (time > times[times.length - 1]) { 126 applyFrame(target, times.length - 1, weight); 129 for (int i = 0; i < times.length; i++) { 130 if (times[i] < time) [all...] |
/bionic/libc/arch-x86/syscalls/ |
times.S | 6 ENTRY(times) function 21 END(times)
|
/system/core/toolbox/ |
touch.c | 45 struct timespec specified_time, times[2]; local 96 times[0] = specified_time; 98 times[0].tv_nsec = UTIME_OMIT; 101 times[1] = specified_time; 103 times[1].tv_nsec = UTIME_OMIT; 107 fprintf(stderr, "times[0].tv_sec = %ld, times[0].tv_nsec = %ld\n", times[0].tv_sec, times[0].tv_nsec); 108 fprintf(stderr, "times[1].tv_sec = %ld, times[1].tv_nsec = %ld\n", times[1].tv_sec, times[1].tv_nsec) [all...] |
/cts/suite/cts/deviceTests/opengl/jni/reference/ |
ReferenceRenderer.cpp | 30 // Reset the times. 47 double times[NUM_SETUP_TIMES]; local 49 times[0] = GLUtils::currentTimeMillis(); 51 times[1] = GLUtils::currentTimeMillis(); 53 times[2] = GLUtils::currentTimeMillis(); 55 times[3] = GLUtils::currentTimeMillis(); 58 // Add on the set up times. 59 mSetUpTimes[i] += times[i] - times[i - 1];
|
/frameworks/base/tools/preload/ |
LoadedClass.java | 90 int[] times = new int[size]; local 92 times[i] = operations.get(i).exclusiveTimeMicros(); 95 Arrays.sort(times); 99 return times[middle]; 102 return (times[middle - 1] + times[middle]) / 2;
|
/external/apache-http/src/org/apache/http/impl/conn/ |
IdleConnectionHandler.java | 93 TimeValues times = connectionToTimes.remove(connection); local 94 if(times == null) { 98 return System.currentTimeMillis() <= times.timeExpires; 129 TimeValues times = connectionToTimes.get(conn); local 130 Long connectionTime = times.timeAdded; 157 TimeValues times = connectionToTimes.get(conn); local 158 if(times.timeExpires <= now) { 160 log.debug("Closing connection, expired @: " + times.timeExpires);
|
/external/webrtc/src/common_audio/signal_processing/ |
get_scaling_square.c | 20 int WebRtcSpl_GetScalingSquare(WebRtc_Word16 *in_vector, int in_vector_length, int times) 22 int nbits = WebRtcSpl_GetSizeInBits(times);
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
TimeListImpl.java | 31 TimeListImpl(ArrayList<Time> times) { 32 mTimes = times;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/ |
dromaeorunner.js | 43 DRT.log(score.name + ': [' + score.times.join(', ') + ']'); 50 var times = []; 52 for (var j = 0; j < tests[i].times.length; ++j) { 53 var runsPerSecond = tests[i].times[j]; 54 times[j] = (times[j] || 0) + 1 / runsPerSecond; 58 for (var i = 0; i < times.length; ++i) 59 PerfTestRunner.measureValueAsync(1 / times[i]);
|
/external/easymock/src/org/easymock/ |
MockControl.java | 191 * number of times, and will react by returning silently.
193 * @param times
194 * the number of times that the call is expected.
200 public void setVoidCallable(int times) {
203 .times(times);
208 * number of times, and will react by throwing the provided Throwable.
212 * @param times
213 * the number of times that the call is expected.
223 public void setThrowable(Throwable throwable, int times) {
348 .times(minCount, maxCount); method [all...] |