Searched refs:tloc (Results 1 – 7 of 7) sorted by relevance
/external/ltp/testcases/kernel/syscalls/time/ |
D | time02.c | 89 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/ |
D | refiner.c | 43 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/ |
D | stime02.c | 85 time_t tloc; /* argument var. for time() */ variable 153 if ((curr_time = time(&tloc)) < 0) { in setup()
|
/external/python/cpython2/Lib/test/ |
D | test_locale.py | 25 for tloc in tlocs: 27 locale.setlocale(locale.LC_NUMERIC, tloc) 34 enUS_locale = tloc
|
/external/python/cpython3/Lib/test/ |
D | test_locale.py | 30 for tloc in tlocs: 32 locale.setlocale(locale.LC_NUMERIC, tloc) 39 cls.enUS_locale = tloc
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 24 #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/ |
D | sanitizer_common_syscalls.inc | 203 PRE_SYSCALL(time)(void *tloc) {} 205 POST_SYSCALL(time)(long res, void *tloc) { 207 if (tloc) POST_WRITE(tloc, sizeof(long));
|