Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FIST (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	switch op {
    	case FADD, FCOM, FCOMP, FDIV, FDIVR, FIADD, FICOM, FICOMP, FIDIV, FIDIVR, FILD, FIMUL, FIST, FISTP, FISTTP, FISUB, FISUBR, FLD, FMUL, FST, FSTP, FSUB, FSUBR:
    		return true
    	}
    	return false
    }
    
    func isFloatInt(op Op) bool {
    	switch op {
    	case FIADD, FICOM, FICOMP, FIDIV, FIDIVR, FILD, FIMUL, FIST, FISTP, FISTTP, FISUB, FISUBR:
    		return true
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		}
    
    	case FPTAN, FSINCOS, FUCOMPP, FCOMPP, FYL2X, FPATAN, FXTRACT, FPREM1, FPREM, FYL2XP1, FSCALE:
    		if len(args) == 0 {
    			args = []string{"st0", "st1"}
    		}
    
    	case FST, FSTP, FISTTP, FIST, FISTP, FBSTP:
    		if len(args) == 1 {
    			args = append(args, "st0")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    		exceedBudget                bool
    		expectRemainingBudget       *int64
    		enableStrictCostEnforcement bool
    		exceedPerCallLimit          bool
    	}{
    		{
    			name: "expression exceed RuntimeCELCostBudget at fist expression",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "has(object.subsets) && object.subsets.size() < 2",
    				},
    				&condition{
    					Expression: "has(object.subsets)",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            for (Object value : values) {
                result.add(toEnum(enumType, value));
            }
            return result;
        }
    
        /**
         * Checks whether the fist {@link CharSequence} ends with the second.
         *
         * If the {@link CharSequence#charAt(int)} method of both sequences is fast,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            for (Object value : values) {
                result.add(toEnum(enumType, value));
            }
            return result;
        }
    
        /**
         * Checks whether the fist {@link CharSequence} ends with the second.
         *
         * If the {@link CharSequence#charAt(int)} method of both sequences is fast,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top