Lines Matching defs:out
62 hidl_array<bool, 4> out;
63 out[0] = !x[0];
64 out[1] = !x[1];
65 out[2] = !x[2];
66 out[3] = true;
68 _hidl_cb(out);
76 hidl_vec<bool> out;
77 out.resize(x.size());
79 out[i] = !x[i];
82 _hidl_cb(out);
130 IBase::VectorOfArray out;
133 out.addresses.resize(n);
136 out.addresses[i] = in.addresses[n - 1 - i];
139 _hidl_cb(out);
151 hidl_vec<hidl_array<uint8_t, 6> > out;
152 out.resize(n);
155 out[i] = in[n - 1 - i];
158 _hidl_cb(out);
166 IBase::StringMatrix3x5 out;
169 out.s[i][j] = in.s[j][i];
173 _hidl_cb(out);
181 hidl_array<hidl_string, 3, 5> out;
184 out[i][j] = in[j][i];
188 _hidl_cb(out);
261 hidl_vec<int32_t> out;
262 out.resize(param.size());
264 out[i] = param[i] * 2;
267 _hidl_cb(out);