Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:IntVal

139           *I8Ptr = (int8_t) AV.IntVal.getZExtValue();
144 *I16Ptr = (int16_t) AV.IntVal.getZExtValue();
149 *I32Ptr = (int32_t) AV.IntVal.getZExtValue();
154 *I64Ptr = (int64_t) AV.IntVal.getZExtValue();
227 case 8: Result.IntVal = APInt(8 , *(int8_t *) ret.data()); break;
228 case 16: Result.IntVal = APInt(16, *(int16_t*) ret.data()); break;
229 case 32: Result.IntVal = APInt(32, *(int32_t*) ret.data()); break;
230 case 64: Result.IntVal = APInt(64, *(int64_t*) ret.data()); break;
304 GV.IntVal = 0;
333 GV.IntVal = APInt(32, strlen(FmtStr));
364 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
380 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
382 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
427 GV.IntVal = APInt(32, sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
441 GV.IntVal = APInt(32, scanf( Args[0], Args[1], Args[2], Args[3], Args[4],
463 int val = (int)Args[1].IntVal.getSExtValue();
464 size_t len = (size_t)Args[2].IntVal.getZExtValue();
467 IntVal set to zero
469 GV.IntVal = 0;
476 (size_t)(Args[2].IntVal.getLimitedValue()));
479 // so here we return GenericValue with IntVal set to zero
481 GV.IntVal = 0;