Home | History | Annotate | Download | only in ADT

Lines Matching full:issigned

385   bool isSigned;
403 isSigned = false;
404 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
407 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
410 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
413 APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
416 APInt(8, 255, isSigned).toString(S, 36, isSigned, false);
420 isSigned = true;
421 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
424 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
427 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
430 APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
433 APInt(8, 255, isSigned).toString(S, 36, isSigned, false);