Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for _case (0.06 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	case REG_CR + 5:
    		return Ycr5
    	case REG_CR + 6:
    		return Ycr6
    	case REG_CR + 7:
    		return Ycr7
    	case REG_CR + 8:
    		return Ycr8
    
    	case REG_DR + 0:
    		return Ydr0
    	case REG_DR + 1:
    		return Ydr1
    	case REG_DR + 2:
    		return Ydr2
    	case REG_DR + 3:
    		return Ydr3
    	case REG_DR + 4:
    		return Ydr4
    	case REG_DR + 5:
    		return Ydr5
    	case REG_DR + 6:
    		return Ydr6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	case C_S16CON:
    		return cmp(C_U15CON, b)
    	case C_U16CON:
    		return cmp(C_U15CON, b)
    	case C_16CON:
    		return cmp(C_S16CON, b) || cmp(C_U16CON, b)
    	case C_U31CON:
    		return cmp(C_U16CON, b)
    	case C_U32CON:
    		return cmp(C_U31CON, b)
    	case C_S32CON:
    		return cmp(C_U31CON, b) || cmp(C_S16CON, b)
    	case C_32CON:
    		return cmp(C_S32CON, b) || cmp(C_U32CON, b)
    	case C_S34CON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		}
    
    	case C_PSAUTO_4:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8:
    			return true
    		}
    
    	case C_PSAUTO:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8, C_PSAUTO_4:
    			return true
    		}
    
    	case C_PPAUTO_16:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16:
    			return true
    		}
    
    	case C_PPAUTO:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8, C_PPAUTO_16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    		case AADDC:
    			opcode = op_ALGRK
    		case AADDE:
    			opcode = op_ALCGR
    		case AADDW:
    			opcode = op_ARK
    		case AMULLW:
    			opcode = op_MSGFR
    		case AMULLD:
    			opcode = op_MSGR
    		case ADIVW, AMODW:
    			opcode = op_DSGFR
    		case ADIVWU, AMODWU:
    			opcode = op_DLR
    		case ADIVD, AMODD:
    			opcode = op_DSGR
    		case ADIVDU, AMODDU:
    			opcode = op_DLGR
    		}
    
    		switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpConst32:
    		return rewriteValueWasm_OpConst32(v)
    	case OpConst32F:
    		v.Op = OpWasmF32Const
    		return true
    	case OpConst64:
    		v.Op = OpWasmI64Const
    		return true
    	case OpConst64F:
    		v.Op = OpWasmF64Const
    		return true
    	case OpConst8:
    		return rewriteValueWasm_OpConst8(v)
    	case OpConstBool:
    		return rewriteValueWasm_OpConstBool(v)
    	case OpConstNil:
    		return rewriteValueWasm_OpConstNil(v)
    	case OpConvert:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	v.mustBeAssignable()
    	switch v.kind() {
    	case Bool:
    		*(*bool)(v.ptr) = false
    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    		*(*int8)(v.ptr) = 0
    	case Int16:
    		*(*int16)(v.ptr) = 0
    	case Int32:
    		*(*int32)(v.ptr) = 0
    	case Int64:
    		*(*int64)(v.ptr) = 0
    	case Uint:
    		*(*uint)(v.ptr) = 0
    	case Uint8:
    		*(*uint8)(v.ptr) = 0
    	case Uint16:
    		*(*uint16)(v.ptr) = 0
    	case Uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	case OpAddPtr:
    		v.Op = OpRISCV64ADD
    		return true
    	case OpAddr:
    		return rewriteValueRISCV64_OpAddr(v)
    	case OpAnd16:
    		v.Op = OpRISCV64AND
    		return true
    	case OpAnd32:
    		v.Op = OpRISCV64AND
    		return true
    	case OpAnd64:
    		v.Op = OpRISCV64AND
    		return true
    	case OpAnd8:
    		v.Op = OpRISCV64AND
    		return true
    	case OpAndB:
    		v.Op = OpRISCV64AND
    		return true
    	case OpAtomicAdd32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	case OpClosureCall:
    		v.Op = OpMIPS64CALLclosure
    		return true
    	case OpCom16:
    		return rewriteValueMIPS64_OpCom16(v)
    	case OpCom32:
    		return rewriteValueMIPS64_OpCom32(v)
    	case OpCom64:
    		return rewriteValueMIPS64_OpCom64(v)
    	case OpCom8:
    		return rewriteValueMIPS64_OpCom8(v)
    	case OpConst16:
    		return rewriteValueMIPS64_OpConst16(v)
    	case OpConst32:
    		return rewriteValueMIPS64_OpConst32(v)
    	case OpConst32F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	case OpClosureCall:
    		v.Op = OpMIPSCALLclosure
    		return true
    	case OpCom16:
    		return rewriteValueMIPS_OpCom16(v)
    	case OpCom32:
    		return rewriteValueMIPS_OpCom32(v)
    	case OpCom8:
    		return rewriteValueMIPS_OpCom8(v)
    	case OpConst16:
    		return rewriteValueMIPS_OpConst16(v)
    	case OpConst32:
    		return rewriteValueMIPS_OpConst32(v)
    	case OpConst32F:
    		v.Op = OpMIPSMOVFconst
    		return true
    	case OpConst64F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "id":
    			z.DiskID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DiskID")
    				return
    			}
    		case "v":
    			z.Volume, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Volume")
    				return
    			}
    		case "fp":
    			z.FilePath, err = dc.ReadString()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
Back to top