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

1 2 3 4 5 6 7 8 9

  /external/libvpx/libvpx/vp9/common/
vp9_common.h 50 #define CHECK_MEM_ERROR(cm, lval, expr) \
52 lval = (expr); \
53 if (!lval) \
55 "Failed to allocate " #lval " at %s:%d", __FILE__, \
59 #define CHECK_MEM_ERROR(cm, lval, expr) \
61 lval = (expr); \
62 if (!lval) \
64 "Failed to allocate " #lval); \
  /external/strace/tests/
overflowuid.c 41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
  /external/strace/tests-m32/
overflowuid.c 41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
  /external/strace/tests-mx32/
overflowuid.c 41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
  /external/libchrome/base/third_party/valgrind/
valgrind.h     [all...]
  /external/regex-re2/util/
valgrind.h     [all...]
  /external/libvpx/libvpx/vp8/decoder/
onyxd_int.h 128 #define CHECK_MEM_ERROR(lval, expr) \
130 lval = (expr); \
131 if (!lval) \
133 "Failed to allocate " #lval " at %s:%d", __FILE__, \
137 #define CHECK_MEM_ERROR(lval, expr) \
139 lval = (expr); \
140 if (!lval) \
142 "Failed to allocate " #lval); \
  /external/valgrind/include/
valgrind.h     [all...]
  /external/v8/src/third_party/valgrind/
valgrind.h     [all...]
  /libcore/ojluni/src/main/native/
ObjectOutputStream.c 135 jlong lval; local
166 lval = jint_to_jlong(0x7ff80000);
167 lval = jlong_shl(lval, 32);
171 lval = u.l;
173 bytes[dstpos++] = (lval >> 56) & 0xFF;
174 bytes[dstpos++] = (lval >> 48) & 0xFF;
175 bytes[dstpos++] = (lval >> 40) & 0xFF;
176 bytes[dstpos++] = (lval >> 32) & 0xFF;
177 bytes[dstpos++] = (lval >> 24) & 0xFF
    [all...]
ObjectInputStream.c 131 jlong lval; local
160 lval = (((jlong) bytes[srcpos + 0] & 0xFF) << 56) +
168 jlong_to_jdouble_bits(&lval);
169 u.l = lval;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 333 LValue *lval; local
346 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue();
347 if (!lval || lval->defs.empty())
354 // gather blocks with assignments to lval in workList
355 for (Value::DefIterator d = lval->defs.begin();
356 d != lval->defs.end(); ++d) {
367 // for each block in workList, insert a phi for lval in the block's
382 if (!dfBB->liveSet.test(lval->id))
385 phi = new_Instruction(this, OP_PHI, typeOfSize(lval->reg.size))
427 LValue *lval = val->asLValue(); local
454 LValue *lval, *ssa; local
    [all...]
nv50_ir_ra.cpp 734 inline void setValue(LValue *lval) { data = lval; }
854 isShortRegVal(LValue *lval)
856 if (lval->getInsn() == NULL)
858 for (Value::DefCIterator def = lval->defs.begin();
859 def != lval->defs.end(); ++def)
862 for (Value::UseCIterator use = lval->uses.begin();
863 use != lval->uses.end(); ++use)
870 GCRA::RIG_Node::init(const RegisterSet& regs, LValue *lval)
872 setValue(lval);
1426 LValue *lval = node->getValue(); local
1445 LValue *lval = nodes[i].getValue(); local
1466 LValue *lval = reinterpret_cast<LValue *>(func->allLValues.get(i)); local
1524 LValue *lval = reinterpret_cast<LValue *>(it.get()); local
1726 LValue *lval = it->first->asLValue(); local
2309 LValue *lval = new_LValue(func, cst->def(d).getFile()); local
2340 LValue *lval = new_LValue(func, cst->src(s).getFile()); local
    [all...]
  /external/libnl/src/lib/
route.c 113 unsigned long lval; local
127 lval = strtoul(arg, &endptr, 0);
131 if ((ret = rtnl_route_set_metric(route, ret, lval)) < 0)
152 unsigned long lval; local
184 lval = strtoul(arg, &endptr, 0);
189 rtnl_route_nh_set_weight(nh, lval);
199 unsigned long lval; local
203 lval = strtoul(arg, &endptr, 0);
209 table = lval;
217 unsigned long lval; local
238 unsigned long lval; local
    [all...]
utils.c 37 unsigned long lval; local
40 lval = strtoul(arg, &endptr, 0);
41 if (endptr == arg || lval == ULONG_MAX)
45 return (uint32_t) lval;
  /toolchain/binutils/binutils-2.25/intl/
plural.y 69 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
260 yylex (lval, pexp)
261 YYSTYPE *lval;
294 lval->num = n;
303 lval->op = equal;
314 lval->op = not_equal;
331 lval->op = less_or_equal;
334 lval->op = less_than;
342 lval->op = greater_or_equal;
345 lval->op = greater_than
    [all...]
  /external/e2fsprogs/intl/
plural.y 57 static int yylex (YYSTYPE *lval, const char **pexp);
235 yylex (YYSTYPE *lval, const char **pexp)
267 lval->num = n;
276 lval->op = equal;
287 lval->op = not_equal;
304 lval->op = less_or_equal;
307 lval->op = less_than;
315 lval->op = greater_or_equal;
318 lval->op = greater_than;
323 lval->op = mult
    [all...]
  /external/google-benchmark/test/
donotoptimize_test.cc 50 BitRef lval = BitRef::Make(); local
51 benchmark::DoNotOptimize(lval);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-generic-lambda-1y.cpp 41 int lval = 0; local
43 l3(3, lval, d, lval, &lval, &A::i, &A::f, 'c', &d, arr);
  /external/curl/src/
tool_setopt.c 258 const NameValue *nvlist, long lval)
263 ret = curl_easy_setopt(curl, tag, lval);
264 if(!lval)
271 if(nv->value == lval) break; /* found it */
277 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
291 const NameValue *nvlist, long lval)
296 ret = curl_easy_setopt(curl, tag, lval);
297 if(!lval)
303 long rest = lval; /* bits not handled yet */
334 long lval)
506 long lval = va_arg(arg, long); local
    [all...]
  /device/google/contexthub/firmware/os/drivers/leds/
leds_lp3943.c 215 uint8_t lval; local
225 lval = mTask.led[index];
228 lval |= (1 << lnum);
230 lval &= ~(1 << lnum);
233 writeRegister(laddr, lval, STATE_LED);
234 mTask.led[index] = lval;
242 uint8_t lval; local
246 lval = flag ? mTask.led[index] : 0;
247 writeRegister(laddr + index, lval, STATE_LED);
  /system/tools/hidl/
ConstantExpression.cpp 33 #define COMPUTE_BINARY(__op__) if(OPEQ(#__op__)) return lval __op__ rval;
110 T handleBinaryCommon(T lval, const char *op, T rval) {
128 << lval << " " << op << " " << rval;
133 T handleShift(T lval, const char *op, int64_t rval) {
139 << lval << " " << op << " " << rval;
143 bool handleLogical(bool lval, const char *op, bool rval) {
148 << lval << " " << op << " " << rval;
260 ConstantExpression::ConstantExpression(const ConstantExpression *lval,
263 : mExpr(std::string("(") + lval->mExpr + " " + op + " " + rval->mExpr + ")"),
273 integralPromotion(lval->mValueKind)
    [all...]
  /external/libjpeg-turbo/
jpegtran.c 243 long lval; local
248 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
251 lval *= 1000L;
252 cinfo->mem->max_memory_to_use = lval * 1000L;
288 long lval; local
293 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
295 if (lval < 0 || lval > 65535L)
298 cinfo->restart_interval = (unsigned int) lval;
301 cinfo->restart_in_rows = (int) lval;
    [all...]
  /external/fio/lib/
pattern.c 71 long lval; local
89 lval = strntol(beg, num, &_end, 10);
91 lval = strtol(beg, &_end, 10);
92 if (beg == _end || lval > INT_MAX || lval < INT_MIN)
96 if (!lval) {
101 val = (unsigned int)lval;
  /prebuilts/misc/common/swig/include/2.0.11/php/
globalvar.i 37 z_var->value.lval = $1;
46 z_var->value.lval = ($1)?1:0;
121 if ($1 != ($1_ltype)((*z_var)->value.lval)) {
132 if ($1 != ($1_ltype)((*z_var)->value.lval)) {
247 if($1 != ($1_ltype)((*z_var)->value.lval)) {
248 (*z_var)->value.lval = (long)$1;
257 if($1 != ($1_ltype)((*z_var)->value.lval)) {
258 (*z_var)->value.lval = (long)$1;

Completed in 873 milliseconds

1 2 3 4 5 6 7 8 9