HomeSort by relevance Sort by last modified time
    Searched refs:ret_val (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/ltp/testcases/kernel/sched/hyperthreading/ht_enabled/
ht_enabled.c 24 int ret_val = 1; local
29 ret_val = check_ht_capability();
31 return ret_val;
  /art/test/485-checker-dce-switch/src/
Main.java 172 int ret_val = wholeSwitchDead(10); local
173 if (ret_val != 100) {
174 throw new Error("Incorrect return value from wholeSwitchDead:" + ret_val);
177 ret_val = constantSwitch_InRange();
178 if (ret_val != 7) {
179 throw new Error("Incorrect return value from constantSwitch_InRange:" + ret_val);
182 ret_val = constantSwitch_AboveRange();
183 if (ret_val != 15) {
184 throw new Error("Incorrect return value from constantSwitch_AboveRange:" + ret_val);
187 ret_val = constantSwitch_BelowRange()
    [all...]
  /external/libcxxabi/test/
test_aux_runtime_op_array_new.pass.cpp 32 int ret_val = 0; local
36 ret_val = 1;
39 return ret_val;
test_aux_runtime.pass.cpp 53 int ret_val = 0; local
57 ret_val = 1;
62 ret_val = 1;
65 return ret_val;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setdetachstate/
4-1.c 27 int ret_val, invalid_val; local
37 ret_val = pthread_attr_setdetachstate(&new_attr, invalid_val);
39 if (ret_val != EINVAL) {
40 printf("Test FAILED: Returned %d instead of EINVAL\n", ret_val);
2-1.c 39 int ret_val; local
62 ret_val = pthread_join(new_th, NULL);
64 if (ret_val != EINVAL) {
69 ret_val = pthread_detach(new_th);
71 if (ret_val != EINVAL) {
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable.cc 27 ConditionVariableWrapper* ret_val = ConditionVariableNativeWin::Create(); local
28 if (!ret_val) {
31 ret_val = new ConditionVariableEventWin();
33 return ret_val;
rw_lock_posix.cc 23 RWLockPosix* ret_val = new RWLockPosix(); local
24 if (!ret_val->Init()) {
25 delete ret_val;
28 return ret_val;
event_timer_posix.cc 71 int ret_val = 0; local
98 while (ret_val == 0 && !event_set_)
99 ret_val = pthread_cond_timedwait(&cond_, &mutex_, &end_at);
101 while (ret_val == 0 && !event_set_)
102 ret_val = pthread_cond_wait(&cond_, &mutex_);
106 RTC_DCHECK(ret_val == 0 || ret_val == ETIMEDOUT);
110 ret_val = 0;
115 return ret_val == 0 ? kEventSignaled : kEventTimeout;
119 int ret_val = 0 local
    [all...]
condition_variable_native_win.cc 38 ConditionVariableNativeWin* ret_val = new ConditionVariableNativeWin(); local
39 if (!ret_val->Init()) {
40 delete ret_val;
43 return ret_val;
91 BOOL ret_val = PSleepConditionVariableCS_(&condition_variable_, local
93 return ret_val != 0;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
2-1.c 57 int ret_val; local
77 ret_val = pthread_detach(new_th);
79 if (ret_val != 0) {
81 if (ret_val == EINVAL) {
88 ret_val);
  /external/u-boot/drivers/ddr/marvell/a38x/
mv_ddr_spd.c 157 enum mv_ddr_dev_width ret_val; local
161 ret_val = MV_DDR_DEV_WIDTH_4BIT;
164 ret_val = MV_DDR_DEV_WIDTH_8BIT;
167 ret_val = MV_DDR_DEV_WIDTH_16BIT;
170 ret_val = MV_DDR_DEV_WIDTH_32BIT;
173 ret_val = MV_DDR_DEV_WIDTH_LAST;
176 return ret_val;
182 enum mv_ddr_die_capacity ret_val; local
186 ret_val = MV_DDR_DIE_CAP_256MBIT;
189 ret_val = MV_DDR_DIE_CAP_512MBIT
232 enum mv_ddr_pri_bus_width ret_val; local
257 enum mv_ddr_bus_width_ext ret_val; local
276 enum mv_ddr_pkg_rank ret_val; local
313 enum mv_ddr_die_count ret_val; local
    [all...]
  /external/eigen/blas/f2c/
lsame.c 18 logical ret_val; local
54 ret_val = *(unsigned char *)ca == *(unsigned char *)cb;
55 if (ret_val) {
56 return ret_val;
109 ret_val = inta == intb;
115 return ret_val;
  /external/e2fsprogs/lib/ss/
error.c 25 register char *ret_val; local
30 ret_val = malloc((unsigned)
33 if (ret_val == (char *)NULL)
35 strcpy(ret_val, infop->subsystem_name);
36 return(ret_val);
41 ret_val = malloc((unsigned)sizeof(char) *
45 cp = ret_val;
56 return(ret_val);
  /external/libxaac/decoder/
ixheaacd_bitbuffer.c 72 UWORD32 ret_val; local
81 ret_val = (UWORD32)*ptr_read_next;
88 ret_val <<= 8;
90 ret_val |= (UWORD32)*ptr_read_next;
93 ret_val = ret_val << ((31 - no_of_bits) - bit_pos) >> (32 - no_of_bits);
95 return ret_val;
99 UWORD32 ret_val; local
113 ret_val = (UWORD32)*ptr_read_next;
120 ret_val <<= 8
201 UWORD8 ret_val; local
229 UWORD8 ret_val; local
286 UWORD32 ret_val; local
    [all...]
  /external/ltp/testcases/kernel/syscalls/fmtmsg/
fmtmsg01.c 77 int fd, ret_val; local
90 ret_val = fmtmsg(MM_PRINT | MM_SOFT, "LTP:fmtmsg", MM_INFO,
96 if (ret_val != 0) {
97 fprintf(temp, "fmtmsg returned %d, expected 0\n\n", ret_val);
133 ret_val = addseverity(3, "INVALID");
134 if (ret_val != MM_NOTOK) {
136 ret_val);
147 ret_val = addseverity(5, "LTP_TEST");
148 if (ret_val != MM_OK) {
150 ret_val);
    [all...]
  /external/u-boot/drivers/fpga/
cyclon2.c 40 int ret_val = FPGA_FAIL; local
45 ret_val = CYC2_ps_load (desc, buf, bsize);
55 ret_val = CYC2_ps_load(desc, buf, bsize);
65 return ret_val;
70 int ret_val = FPGA_FAIL; local
75 ret_val = CYC2_ps_dump (desc, buf, bsize);
85 return ret_val;
97 int ret_val = FPGA_FAIL; /* assume the worst */ local
178 ret_val = FPGA_SUCCESS;
181 if (ret_val == FPGA_SUCCESS)
    [all...]
fpga.c 78 int ret_val = FPGA_FAIL; /* assume failure */ local
89 ret_val = xilinx_info(desc->devdesc);
97 ret_val = altera_info(desc->devdesc);
105 ret_val = lattice_info(desc->devdesc);
118 return ret_val;
196 int ret_val = FPGA_FAIL; /* assume failure */ local
204 ret_val = xilinx_loadfs(desc->devdesc, buf, size,
216 return ret_val;
224 int ret_val = FPGA_FAIL; local
233 ret_val = xilinx_loads(desc->devdesc, buf, size
254 int ret_val = FPGA_FAIL; \/* assume failure *\/ local
297 int ret_val = FPGA_FAIL; \/* assume failure *\/ local
    [all...]
  /external/u-boot/drivers/power/
power_i2c.c 62 u32 ret_val = 0; local
77 ret_val = le32_to_cpu(buf[2] << 16
80 ret_val = le32_to_cpu(buf[0] << 16 |
85 ret_val = le32_to_cpu(buf[1] << 8 | buf[0]);
87 ret_val = le32_to_cpu(buf[0] << 8 | buf[1]);
90 ret_val = le32_to_cpu(buf[0]);
96 memcpy(val, &ret_val, sizeof(ret_val));
  /external/u-boot/drivers/net/
e1000.c 425 int32_t ret_val = E1000_SUCCESS; local
573 ret_val = e1000_read_eeprom(hw, EEPROM_CFG, 1,
575 if (ret_val)
576 return ret_val;
593 return ret_val;
884 int32_t ret_val = 0; local
892 ret_val = -E1000_ERR_EEPROM;
906 ret_val = 0;
912 if (ret_val) {
919 return ret_val;
929 int32_t ret_val = -E1000_ERR_EEPROM; local
951 int32_t ret_val = 0; local
983 int32_t ret_val = 0; local
1093 int32_t ret_val; local
1384 int ret_val; local
1846 int32_t ret_val; local
2065 int32_t ret_val; local
2216 int32_t ret_val; local
2343 int32_t ret_val; local
2414 int32_t ret_val; local
2549 int32_t ret_val; local
2658 int32_t ret_val; local
2880 int32_t ret_val; local
3029 int32_t ret_val; local
3132 int32_t ret_val; local
3208 int32_t ret_val; local
3236 int32_t ret_val; local
3344 int32_t ret_val; local
3646 int32_t ret_val; local
3865 int32_t ret_val; local
4042 int32_t ret_val = E1000_SUCCESS; local
4078 int32_t ret_val = E1000_SUCCESS; local
4119 int32_t ret_val; local
4596 int32_t ret_val; local
4677 uint32_t ret_val; local
4786 int32_t ret_val; local
4886 int32_t phy_init_status, ret_val; local
5441 int ret_val = 0; local
5659 int ret_val, i; local
    [all...]
  /external/libavc/encoder/
ih264e_encode_header.h 52 #define PUT_BITS(ps_bitstrm, code_val, code_len, ret_val, syntax_string) \
54 ret_val |= ih264e_put_bits((ps_bitstrm), (code_val), (code_len))
63 #define PUT_BITS_UEV(ps_bitstrm, code_val, ret_val, syntax_string) \
65 ret_val |= ih264e_put_uev((ps_bitstrm), (code_val))
74 #define PUT_BITS_SEV(ps_bitstrm, code_val, ret_val, syntax_string) \
76 ret_val |= ih264e_put_sev((ps_bitstrm), (code_val))
  /external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
ftrace_trace_options.sh 35 ret_val=0
48 ret_val=$?
51 if [ $ret_val -ne 0 ]; then
  /external/webrtc/webrtc/modules/video_processing/
spatial_resampler.cc 62 int ret_val = 0; local
63 ret_val = scaler_.Set(inFrame.width(), inFrame.height(), target_width_,
65 if (ret_val < 0)
66 return ret_val;
68 ret_val = scaler_.Scale(inFrame, outFrame);
75 if (ret_val == 0)
  /external/tensorflow/tensorflow/python/lib/core/
py_util.cc 72 PyObject* ret_val = PyObject_CallFunctionObjArgs(format_exception, ptype, local
76 if (!ret_val) {
80 if (!PyList_Check(ret_val)) {
81 Py_DECREF(ret_val);
85 Py_ssize_t n = PyList_GET_SIZE(ret_val);
87 PyObject* v = PyList_GET_ITEM(ret_val, i);
95 // Iterate through ret_val.
96 Py_DECREF(ret_val);
  /external/toolchain-utils/binary_search_tool/common/
test_setup.sh 77 ret_val=0
80 . ./common.sh || ret_val=1
81 . ./remote_access.sh || ret_val=1
83 FLAGS "$@" || ret_val=1
84 remote_access_init || ret_val=1
85 remote_reboot || ret_val=1
88 return $ret_val

Completed in 879 milliseconds

1 2 3 4 5 6 7