Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for parg (0.05 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) newValue1(op ssa.Op, t *types.Type, arg *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue1(s.peekPos(), op, t, arg)
    }
    
    // newValue1A adds a new value with one argument and an aux value to the current block.
    func (s *state) newValue1A(op ssa.Op, t *types.Type, aux ssa.Aux, arg *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue1A(s.peekPos(), op, t, aux, arg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		}
    		x_0 := x.Args[0]
    		if x_0.Op != OpPPC64LoweredAtomicLoad8 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBZreg x:(Arg <t>))
    	// cond: is8BitInt(t) && !t.IsSigned()
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpArg {
    			break
    		}
    		t := x.Type
    		if !(is8BitInt(t) && !t.IsSigned()) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.copyOf(v0)
    		v0.AuxInt = int32ToAuxInt(o)
    		v0.Aux = symToAux(s)
    		v0.AddArg2(p, mem)
    		return true
    	}
    	// match: (MOVBZreg x:(Arg <t>))
    	// cond: !t.IsSigned() && t.Size() == 1
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpArg {
    			break
    		}
    		t := x.Type
    		if !(!t.IsSigned() && t.Size() == 1) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0x43444601" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/x-parquet">
        <glob pattern="*.parquet"/>
        <magic priority="50">
          <match value="PAR1" type="string" offset="0" />
        </magic>
      </mime-type>
      <mime-type type="application/x-pds">
        <_comment>Planetary Data System Version 3 format</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top