Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 83 of 83 for f64 (0.04 sec)

  1. src/cmd/cgo/internal/test/test.go

    	unsigned long long f16 : 16;
    	unsigned long long f24 : 24;
    	unsigned long long f32 : 32;
    	unsigned long long f40 : 40;
    	unsigned long long f48 : 48;
    	unsigned long long f56 : 56;
    	unsigned long long f64 : 64;
    } issue22958Type;
    
    // issue 23356
    int a(void) { return 5; };
    int r(void) { return 3; };
    
    // issue 23720
    typedef int *issue23720A;
    typedef const int *issue23720B;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		return C_TEXTSIZE
    
    	case obj.TYPE_FCONST:
    		// The only cases where FCONST will occur are with float64 +/- 0.
    		// All other float constants are generated in memory.
    		f64 := a.Val.(float64)
    		if f64 == 0 {
    			if math.Signbit(f64) {
    				return C_S16CON
    			}
    			return C_ZCON
    		}
    		log.Fatalf("Unexpected nonzero FCONST operand %v", a)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    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/s390x/asmz.go

    				return C_SOREG
    			}
    			return C_LOREG
    		}
    
    		return C_GOK
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_FCONST:
    		if f64, ok := a.Val.(float64); ok && math.Float64bits(f64) == 0 {
    			return C_ZCON
    		}
    		c.ctxt.Diag("cannot handle the floating point constant %v", a.Val)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top