HomeSort by relevance Sort by last modified time
    Searched refs:ovalue (Results 1 - 11 of 11) sorted by null

  /external/ltp/testcases/kernel/syscalls/setitimer/
setitimer01.c 72 struct itimerval *value, *ovalue; local
91 if ((ovalue = malloc((size_t)sizeof(struct itimerval))) ==
93 tst_brkm(TBROK, cleanup, "ovalue malloc failed");
107 TEST(setitimer(ITIMER_REAL, value, ovalue));
117 * the old values should be stored in ovalue
122 if ((setitimer(ITIMER_REAL, value, ovalue)) == -1) {
127 if (ovalue->it_value.tv_sec <= SEC1) {
setitimer03.c 69 struct itimerval *value, *ovalue; local
88 if ((ovalue = malloc((size_t)sizeof(struct itimerval))) ==
106 TEST(setitimer(-ITIMER_PROF, value, ovalue));
130 free(ovalue);
132 ovalue = NULL;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
imageop.c 275 unsigned char ovalue; local
292 ovalue = 0;
295 ovalue |= bit;
298 *ncp++ = ovalue;
300 ovalue = 0;
304 *ncp++ = ovalue;
313 unsigned char ovalue; local
330 ovalue = 0;
332 ovalue |= ((int)cp[i] & 0xf0) >> pos;
335 *ncp++ = ovalue;
350 unsigned char ovalue; local
387 unsigned char ovalue; local
429 unsigned char ovalue; local
    [all...]
  /external/python/cpython2/Modules/
imageop.c 278 unsigned char ovalue; local
295 ovalue = 0;
298 ovalue |= bit;
301 *ncp++ = ovalue;
303 ovalue = 0;
307 *ncp++ = ovalue;
316 unsigned char ovalue; local
333 ovalue = 0;
335 ovalue |= ((int)cp[i] & 0xf0) >> pos;
338 *ncp++ = ovalue;
353 unsigned char ovalue; local
390 unsigned char ovalue; local
432 unsigned char ovalue; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
itimer.c 130 specified in the structure pointed to by value, and if ovalue is not a null
132 by ovalue.
157 @param[out] ovalue The old value for this timer.
166 struct itimerval *ovalue
181 if (ovalue != NULL) {
182 CopyMem(ovalue, &RealTimerInfo, sizeof(struct itimerval));
188 if (ovalue != NULL) {
189 CopyMem(ovalue, &VirtualTimerInfo, sizeof(struct itimerval));
195 if (ovalue != NULL) {
196 CopyMem(ovalue, &ProfTimerInfo, sizeof(struct itimerval));
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
time.h 196 int setitimer (int which, const struct itimerval *value, struct itimerval *ovalue);
  /external/flatbuffers/include/flatbuffers/
idl.h 728 std::string *value, uoffset_t *ovalue);
732 FLATBUFFERS_CHECKED_ERROR ParseVector(const Type &type, uoffset_t *ovalue);
    [all...]
  /external/compiler-rt/include/sanitizer/
linux_syscall_hooks.h 183 #define __sanitizer_syscall_pre_setitimer(which, value, ovalue) \
185 (long)(ovalue))
186 #define __sanitizer_syscall_post_setitimer(res, which, value, ovalue) \
188 (long)(ovalue))
    [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
zsysnum_netbsd_386.go 244 SYS_TIMER_SETTIME = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }
zsysnum_netbsd_amd64.go 244 SYS_TIMER_SETTIME = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }
zsysnum_netbsd_arm.go 244 SYS_TIMER_SETTIME = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }

Completed in 3841 milliseconds