Home
last modified time | relevance | path

Searched refs:ovalue (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Modules/
Dimageop.c278 unsigned char ovalue; in imageop_grey2mono() local
295 ovalue = 0; in imageop_grey2mono()
298 ovalue |= bit; in imageop_grey2mono()
301 *ncp++ = ovalue; in imageop_grey2mono()
303 ovalue = 0; in imageop_grey2mono()
307 *ncp++ = ovalue; in imageop_grey2mono()
316 unsigned char ovalue; in imageop_grey2grey4() local
333 ovalue = 0; in imageop_grey2grey4()
335 ovalue |= ((int)cp[i] & 0xf0) >> pos; in imageop_grey2grey4()
338 *ncp++ = ovalue; in imageop_grey2grey4()
[all …]
/external/ltp/testcases/kernel/syscalls/setitimer/
Dsetitimer03.c69 struct itimerval *value, *ovalue; in main() local
88 if ((ovalue = malloc((size_t)sizeof(struct itimerval))) == in main()
106 TEST(setitimer(-ITIMER_PROF, value, ovalue)); in main()
130 free(ovalue); in main()
132 ovalue = NULL; in main()
Dsetitimer01.c72 struct itimerval *value, *ovalue; in main() local
91 if ((ovalue = malloc((size_t)sizeof(struct itimerval))) == in main()
107 TEST(setitimer(ITIMER_REAL, value, ovalue)); in main()
122 if ((setitimer(ITIMER_REAL, value, ovalue)) == -1) { in main()
127 if (ovalue->it_value.tv_sec <= SEC1) { in main()
/external/llvm-project/compiler-rt/include/sanitizer/
Dnetbsd_syscall_hooks.h1247 ovalue) \ argument
1250 (long long)(ovalue))
1252 value, ovalue) \ argument
1255 (long long)(ovalue))
2478 ovalue) \ argument
2481 (long long)(ovalue))
2483 ovalue) \ argument
2486 (long long)(ovalue))
3801 long long ovalue);
3806 long long ovalue);
[all …]
Dlinux_syscall_hooks.h182 #define __sanitizer_syscall_pre_setitimer(which, value, ovalue) \ argument
184 (long)(ovalue))
185 #define __sanitizer_syscall_post_setitimer(res, which, value, ovalue) \ argument
187 (long)(ovalue))
2103 long ovalue);
2105 long ovalue);
/external/flatbuffers/include/flatbuffers/
Didl.h874 std::string *value, uoffset_t *ovalue);
880 FLATBUFFERS_CHECKED_ERROR ParseVector(const Type &type, uoffset_t *ovalue,
/external/flatbuffers/src/
Didl_parser.cpp1074 uoffset_t *ovalue) { in ParseTable() argument
1223 FLATBUFFERS_ASSERT(!ovalue); in ParseTable()
1226 if (ovalue) *ovalue = val; in ParseTable()
1282 CheckedError Parser::ParseVector(const Type &type, uoffset_t *ovalue, in ParseVector() argument
1327 *ovalue = builder_.EndVector(count); in ParseVector()
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h183 #define __sanitizer_syscall_pre_setitimer(which, value, ovalue) \ argument
185 (long)(ovalue))
186 #define __sanitizer_syscall_post_setitimer(res, which, value, ovalue) \ argument
188 (long)(ovalue))
2102 long ovalue);
2104 long ovalue);
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc436 PRE_SYSCALL(setitimer)(long which, void *value, void *ovalue) {}
438 POST_SYSCALL(setitimer)(long res, long which, void *value, void *ovalue) {
441 if (ovalue) POST_WRITE(ovalue, struct_itimerval_sz);
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc435 PRE_SYSCALL(setitimer)(long which, void *value, void *ovalue) {}
437 POST_SYSCALL(setitimer)(long res, long which, void *value, void *ovalue) {
440 if (ovalue) POST_WRITE(ovalue, struct_itimerval_sz);
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def881 /// struct itimerval *ovalue);
/external/llvm-project/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1204 /// struct itimerval *ovalue);
/external/rust/crates/clap/
DREADME.md102 …- Both short and long versions supported (i.e. `-o value`, `-ovalue`, `-o=value` and `--option val…
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1159 /// struct itimerval *ovalue);
/external/rust/crates/libc/src/unix/solarish/
Dmod.rs2589 ovalue: *mut itimerspec, in timer_settime()