Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ctr2 (0.08 sec)

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

    	// cond: isSamePtr(ptr1, ptr2)
    	// result: (LDGR x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr1 := v_0
    		if v_1.Op != OpS390XMOVDstore || auxIntToInt32(v_1.AuxInt) != off || auxToSym(v_1.Aux) != sym {
    			break
    		}
    		x := v_1.Args[1]
    		ptr2 := v_1.Args[0]
    		if !(isSamePtr(ptr1, ptr2)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVBUloadidx ptr idx (MOVBstoreidx ptr2 idx x _))
    	// cond: isSamePtr(ptr, ptr2)
    	// result: (MOVBUreg x)
    	for {
    		ptr := v_0
    		idx := v_1
    		if v_2.Op != OpARMMOVBstoreidx {
    			break
    		}
    		x := v_2.Args[2]
    		ptr2 := v_2.Args[0]
    		if idx != v_2.Args[1] || !(isSamePtr(ptr, ptr2)) {
    			break
    		}
    		v.reset(OpARMMOVBUreg)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

    	// cond: sym == sym2 && off == off2 && isSamePtr(ptr, ptr2)
    	// result: (MOVBLSX x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		if v_1.Op != Op386MOVBstore {
    			break
    		}
    		off2 := auxIntToInt32(v_1.AuxInt)
    		sym2 := auxToSym(v_1.Aux)
    		x := v_1.Args[1]
    		ptr2 := v_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="50">
          <match value="\x49\x49\x1a\x00\x00\x00HEAPCCDR" type="string" offset="0"/>
        </magic>
        <glob pattern="*.crw"/>
      </mime-type>
    
      <mime-type type="image/x-canon-cr2">
        <_comment>Canon raw image, version 2, TIFF-based</_comment>
        <!-- basically tiff header with 'CR' at offset 8; major version is at offset 9, minor at 10/.
         priority must be higher than tiff -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/newrelic/go-agent,v2.15.0+incompatible,h1:IB0Fy+dClpBq9aEoIrLyQXzU34JyI1xVTanPLB/+jvU=,4c541c5f7b10055c37cf22843edbb9b0fcb06ad3504e8d6eae3d9c37ff3c64c6
    github.com/nf/cr2,v0.0.0-20140528043846-05d46fef4f2f,h1:nyKdx+jcykIdxGNrbgo/TGjdGi99EY9FKBCjYAUS4bU=,665afbe7830424dd9815cae42aa7762b657484686d671f88704257ea7c9736be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  6. ChangeLog.md

    ### Tools. REPL
    
    - [`KT-18355`](https://youtrack.jetbrains.com/issue/KT-18355) REPL doesn't quit on the first line after pressing Ctrl+D or typing :quit
    
    ### Tools. Scripts
    
    - [`KT-67727`](https://youtrack.jetbrains.com/issue/KT-67727) Kotlin Scripting with language version 2.0 fails during IR lowering on empty scripts
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

     ╰─────────────────────────────────────────────────────╯
    
    INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    INFO:     Started reloader process [2248755] using WatchFiles
    INFO:     Started server process [2248757]
    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top