Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for size8 (0.34 sec)

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

    		var op ssa.Op
    		if ft.Size() == tt.Size() {
    			switch ft.Size() {
    			case 8:
    				op = ssa.OpRound32F
    			case 16:
    				op = ssa.OpRound64F
    			default:
    				s.Fatalf("weird complex conversion %v -> %v", ft, tt)
    			}
    		} else if ft.Size() == 8 && tt.Size() == 16 {
    			op = ssa.OpCvt32Fto64F
    		} else if ft.Size() == 16 && tt.Size() == 8 {
    			op = ssa.OpCvt64Fto32F
    		} else {
    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/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 1000 */
        String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// match: (MOVHZreg x:(MOVBZload _ _))
    	// cond: (!x.Type.IsSigned() || x.Type.Size() > 1)
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpS390XMOVBZload || !(!x.Type.IsSigned() || x.Type.Size() > 1) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVHZreg x:(MOVHZload _ _))
    	// cond: (!x.Type.IsSigned() || x.Type.Size() > 2)
    	// result: x
    	for {
    		x := v_0
    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. doc/go_spec.html

    [<a href="#Go_1.20">Go 1.20</a>].
    </p>
    
    <h3 id="Size_and_alignment_guarantees">Size and alignment guarantees</h3>
    
    <p>
    For the <a href="#Numeric_types">numeric types</a>, the following sizes are guaranteed:
    </p>
    
    <pre class="grammar">
    type                                 size in bytes
    
    byte, uint8, int8                     1
    uint16, int16                         2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386.go

    	// cond: t.Size() == 4 && t.IsFloat()
    	// result: (MOVSSstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 4 && t.IsFloat()) {
    			break
    		}
    		v.reset(Op386MOVSSstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 4 && !t.IsFloat()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: t.Size() == 4 && t.IsFloat()
    	// result: (FMOVSstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 4 && t.IsFloat()) {
    			break
    		}
    		v.reset(OpPPC64FMOVSstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 8 && !t.IsFloat()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpARMMOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    	// result: (MOVHstore ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-65010`](https://youtrack.jetbrains.com/issue/KT-65010) Kotlin/Native: code generation for a static field is failing
    - [`KT-57299`](https://youtrack.jetbrains.com/issue/KT-57299) K2: VerifyError due to overriding final method `size` on a subclass of Collection and Set
    - [`KT-64706`](https://youtrack.jetbrains.com/issue/KT-64706) K2: Type inference cannot resolve nullable `@Composable` lambda
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <!-- note on the offset value here: this can only be as big as
               MimeTypes#getMinLength(). If you set the offset value to larger
               than that size, the magic will only be compared to up to
               MimeTypes#getMinLength() bytes. It should also only start after
               the higher priority "start of file" one above
           -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg io/fs, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys }
    pkg io/fs, type FileInfo interface, IsDir() bool
    pkg io/fs, type FileInfo interface, ModTime() time.Time
    pkg io/fs, type FileInfo interface, Mode() FileMode
    pkg io/fs, type FileInfo interface, Name() string
    pkg io/fs, type FileInfo interface, Size() int64
    pkg io/fs, type FileInfo interface, Sys() interface{}
    pkg io/fs, type FileMode uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top