Lines Matching defs:Ext
430 void ShiftBitIntByConstant(_BitInt(28) Ext) {
433 Ext << 7;
435 Ext >> 7;
437 Ext << -7;
439 Ext >> -7;
443 Ext << 29;
445 Ext >> 29;
448 void ShiftBitIntByConstant(uint16_t4 Ext) {
452 Ext << 7;
454 Ext >> 7;
456 Ext << -7;
458 Ext >> -7;
462 Ext << 29;
464 Ext >> 29;
467 void ShiftBitIntByConstant(vint32_t8 Ext) {
471 Ext << 7;
473 Ext >> 7;
475 Ext << -7;
477 Ext >> -7;
481 Ext << 29;
483 Ext >> 29;
487 void ConstantShiftByBitInt(_BitInt(28) Ext, _BitInt(65) LargeExt) {
490 10 << Ext;
493 10 >> Ext;
504 void Shift(_BitInt(28) Ext, _BitInt(65) LargeExt, int i) {
507 i << Ext;
510 i >> Ext;
521 Ext << i;
525 Ext >> i;
537 Ext << LargeExt;
540 Ext >> LargeExt;
544 LargeExt << Ext;
547 LargeExt >> Ext;