Searched refs:rem (Results 1 – 5 of 5) sorted by relevance
/device/google/contexthub/firmware/lib/builtins/ |
D | udivmoddi4.c | 24 __udivmoddi4(du_int a, du_int b, du_int* rem) in __udivmoddi4() argument 44 if (rem) in __udivmoddi4() 45 *rem = n.s.low % d.s.low; in __udivmoddi4() 52 if (rem) in __udivmoddi4() 53 *rem = n.s.low; in __udivmoddi4() 65 if (rem) in __udivmoddi4() 66 *rem = n.s.high % d.s.low; in __udivmoddi4() 76 if (rem) in __udivmoddi4() 80 *rem = r.all; in __udivmoddi4() 90 if (rem) in __udivmoddi4() [all …]
|
D | divmoddi4.c | 20 __divmoddi4(di_int a, di_int b, di_int* rem) in __divmoddi4() argument 23 *rem = a - (d*b); in __divmoddi4()
|
D | int_lib.h | 60 di_int __divmoddi4(di_int a, di_int b, di_int* rem); 61 du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
|
/device/generic/goldfish-opengl/ |
D | cmake_transform.py | 20 rem = cleanup_json(value) 21 if (rem is not None): 22 copy[key] = rem 28 rem = cleanup_json(elem) 29 if (rem is not None): 30 if rem not in copy: 31 copy.append(rem)
|
/device/linaro/poplar/wifi/wifi_hal/ |
D | cpp_bindings.h | 110 int rem; variable 114 rem = nla_len(attr); in nl_iterator() 117 return nla_ok(pos, rem); in has_next() 120 pos = (struct nlattr *)nla_next(pos, &(rem)); in next() 365 #define for_each_attr(pos, nla, rem) \ argument 366 for (pos = (nlattr *)nla_data(nla), rem = nla_len(nla); \ 367 nla_ok(pos, rem); \ 368 pos = (nlattr *)nla_next(pos, &(rem)))
|