Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:IntVal

140           *I8Ptr = (int8_t) AV.IntVal.getZExtValue();
145 *I16Ptr = (int16_t) AV.IntVal.getZExtValue();
150 *I32Ptr = (int32_t) AV.IntVal.getZExtValue();
155 *I64Ptr = (int64_t) AV.IntVal.getZExtValue();
229 case 8: Result.IntVal = APInt(8 , *(int8_t *) ret.data()); break;
230 case 16: Result.IntVal = APInt(16, *(int16_t*) ret.data()); break;
231 case 32: Result.IntVal = APInt(32, *(int32_t*) ret.data()); break;
232 case 64: Result.IntVal = APInt(64, *(int64_t*) ret.data()); break;
307 GV.IntVal = 0;
341 GV.IntVal = APInt(32, strlen(FmtStr));
372 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
388 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
390 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
437 GV.IntVal = APInt(32, sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
453 GV.IntVal = APInt(32, scanf( Args[0], Args[1], Args[2], Args[3], Args[4],
476 int val = (int)Args[1].IntVal
477 size_t len = (size_t)Args[2].IntVal.getZExtValue();
480 // so here we return GenericValue with IntVal set to zero
482 GV.IntVal = 0;
489 (size_t)(Args[2].IntVal.getLimitedValue()));
492 // so here we return GenericValue with IntVal set to zero
494 GV.IntVal = 0;