Lines Matching refs:Ext
364 void ShiftBitIntByConstant(_BitInt(28) Ext) {
367 Ext << 7;
369 Ext >> 7;
371 Ext << -7;
373 Ext >> -7;
377 Ext << 29;
379 Ext >> 29;
383 void ConstantShiftByBitInt(_BitInt(28) Ext, _BitInt(65) LargeExt) {
386 10 << Ext;
389 10 >> Ext;
400 void Shift(_BitInt(28) Ext, _BitInt(65) LargeExt, int i) {
403 i << Ext;
406 i >> Ext;
417 Ext << i;
420 Ext >> i;
431 Ext << LargeExt;
434 Ext >> LargeExt;
438 LargeExt << Ext;
441 LargeExt >> Ext;