Home
last modified time | relevance | path

Searched refs:tloc (Results 1 – 7 of 7) sorted by relevance

/external/ltp/testcases/kernel/syscalls/time/
Dtime02.c89 time_t tloc; /* time_t variables for time(2) */ in main() local
103 TEST(time(&tloc)); in main()
110 if (tloc == TEST_RETURN) { in main()
113 TEST_RETURN, (intmax_t) tloc); in main()
118 (intmax_t) tloc); in main()
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Drefiner.c43 size_t tloc, tloc2, i; in WebRtcIlbcfix_Refiner() local
99 tloc = WebRtcSpl_MaxIndexW32(corrVecUps, ENH_UPS0 * corrdim); in WebRtcIlbcfix_Refiner()
103 *updStartPos = searchSegStartPos * 4 + tloc + 4; in WebRtcIlbcfix_Refiner()
105 tloc2 = (tloc + 3) >> 2; in WebRtcIlbcfix_Refiner()
126 polyPtr = (int16_t*)WebRtcIlbcfix_kEnhPolyPhaser[tloc2 * ENH_UPS0 - tloc]; in WebRtcIlbcfix_Refiner()
/external/ltp/testcases/kernel/syscalls/stime/
Dstime02.c85 time_t tloc; /* argument var. for time() */ variable
153 if ((curr_time = time(&tloc)) < 0) { in setup()
/external/python/cpython2/Lib/test/
Dtest_locale.py25 for tloc in tlocs:
27 locale.setlocale(locale.LC_NUMERIC, tloc)
34 enUS_locale = tloc
/external/python/cpython3/Lib/test/
Dtest_locale.py30 for tloc in tlocs:
32 locale.setlocale(locale.LC_NUMERIC, tloc)
39 cls.enUS_locale = tloc
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h24 #define __sanitizer_syscall_pre_time(tloc) \ argument
25 __sanitizer_syscall_pre_impl_time((long)(tloc))
26 #define __sanitizer_syscall_post_time(res, tloc) \ argument
27 __sanitizer_syscall_post_impl_time(res, (long)(tloc))
2016 void __sanitizer_syscall_pre_impl_time(long tloc);
2017 void __sanitizer_syscall_post_impl_time(long res, long tloc);
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc203 PRE_SYSCALL(time)(void *tloc) {}
205 POST_SYSCALL(time)(long res, void *tloc) {
207 if (tloc) POST_WRITE(tloc, sizeof(long));