Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for umagic (0.12 sec)

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

    				got++
    			}
    			if want != got {
    				t.Errorf("signed magic wrong for %d / %d: got %d, want %d (m=%d,s=%d)\n", i, c, got, want, m, s)
    			}
    		}
    	}
    }
    func testMagicExhaustiveU(t *testing.T, n uint) {
    	max := uint64(1) << n
    	for c := uint64(1); c < max; c++ {
    		if !umagicOK(n, int64(c)) {
    			continue
    		}
    		m := umagic(n, int64(c)).m
    		s := umagic(n, int64(c)).s
    		for i := uint64(0); i < max; i++ {
    			want := i / c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    	}
    	M.SetBit(M, int(n), 0)
    	m := M.Uint64()
    	return umagicData{s: int64(s), m: m}
    }
    
    func umagic8(c int8) umagicData   { return umagic(8, int64(c)) }
    func umagic16(c int16) umagicData { return umagic(16, int64(c)) }
    func umagic32(c int32) umagicData { return umagic(32, int64(c)) }
    func umagic64(c int64) umagicData { return umagic(64, c) }
    
    // For signed division, we use a similar strategy.
    // First, we enforce a positive c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/importer.go

    			}
    			reader = r
    		}
    
    		var magics string
    		magics, err = readMagic(reader)
    		if err != nil {
    			return
    		}
    
    		if magics == archiveMagic || magics == aixbigafMagic {
    			reader, err = arExportData(reader)
    			if err != nil {
    				return
    			}
    			magics, err = readMagic(reader)
    			if err != nil {
    				return
    			}
    		}
    
    		switch magics {
    		case gccgov1Magic, gccgov2Magic, gccgov3Magic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  4. src/debug/macho/fat.go

    	// Start with the magic number.
    	err := binary.Read(sr, binary.BigEndian, &ff.Magic)
    	if err != nil {
    		return nil, &FormatError{0, "error reading magic number", nil}
    	} else if ff.Magic != MagicFat {
    		// See if this is a Mach-O file via its magic number. The magic
    		// must be converted to little endian first though.
    		var buf [4]byte
    		binary.BigEndian.PutUint32(buf[:], ff.Magic)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_android.c

    	}
    	pthread_setspecific(k, (void*)magic1);
    	// If thread local slots are laid out as we expect, our magic word will
    	// be located at some low offset from tlsbase. However, just in case something went
    	// wrong, the search is limited to sensible offsets. PTHREAD_KEYS_MAX was the
    	// original limit, but issue 19472 made a higher limit necessary.
    	for (i=0; i<384; i++) {
    		if (*(tlsbase+i) == (void*)magic1) {
    			*tlsg = (void*)(i*sizeof(void *));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/materialize_passthrough_op.mlir

    // CHECK-NEXT:    %[[ADD:.*]] = "tf.Add"(%[[ARG0]], %[[ARG1]]) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10xf32>
    // CHECK-NEXT:    %[[MAGIC:.*]] = "magic.op"(%[[ADD]], %[[ADD]]) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10x10xf32>
    // CHECK-NEXT:    return %[[MAGIC]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/internal/xcoff/ar.go

    	// Read File Header
    	var magic [SAIAMAG]byte
    	if _, err := sr.ReadAt(magic[:], 0); err != nil {
    		return nil, err
    	}
    
    	arch := new(Archive)
    	switch string(magic[:]) {
    	case AIAMAGBIG:
    		arch.magic = string(magic[:])
    	case AIAMAG:
    		return nil, fmt.Errorf("small AIX archive not supported")
    	default:
    		return nil, fmt.Errorf("unrecognised archive magic: 0x%x", magic)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/mlir_passthrough_op.pbtxt

        key: "mlir_module"
        value {
          s: "\nfunc @main(%arg0 : tensor<10xf32>, %arg1 : tensor<10xf32>) -> tensor<10x10xf32> {\n   %add = \"tf.Add\"(%arg0, %arg1) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10xf32>\n   %ret = \"magic.op\"(%add, %add) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10x10xf32>\n   return %ret : tensor<10x10xf32>\n}\n"
        }
      }
    }
    node {
      name: "Identity"
      op: "Identity"
      input: "MlirPassthroughOp"
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/archive/tar/format.go

    	trailer := string(b.toSTAR().trailer())
    	switch {
    	case magic == magicUSTAR && trailer == trailerSTAR:
    		return formatSTAR
    	case magic == magicUSTAR:
    		return FormatUSTAR | FormatPAX
    	case magic == magicGNU && version == versionGNU:
    		return FormatGNU
    	default:
    		return formatV7
    	}
    }
    
    // setFormat writes the magic values necessary for specified format
    // and then updates the checksum accordingly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    	case beMagic == go12magic:
    		t.binary, possibleVersion = binary.BigEndian, ver12
    	case leMagic == go116magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver116
    	case beMagic == go116magic:
    		t.binary, possibleVersion = binary.BigEndian, ver116
    	case leMagic == go118magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver118
    	case beMagic == go118magic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top