Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 199 for Shift2 (0.29 sec)

  1. src/compress/flate/testdata/huffman-shifts.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 32 bytes
    - Viewed (0)
  2. src/compress/flate/testdata/huffman-shifts.wb.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 32 bytes
    - Viewed (0)
  3. src/cmd/vet/doc.go

    	nilfunc          check for useless comparisons between functions and nil
    	printf           check consistency of Printf format strings and arguments
    	shift            check for shifts that equal or exceed the width of the integer
    	sigchanyzer      check for unbuffered channel of os.Signal
    	slog             check for invalid structured logging calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-text-shift.wb.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/doc.go

    The instructions are MOVK(W), MOVZ(W) and MOVN(W), the assembly syntax is "op $(uimm16<<shift), <Rd>". The <uimm16>
    is the 16-bit unsigned immediate, in the range 0 to 65535; For the 32-bit variant, the <shift> is 0 or 16, for the
    64-bit variant, the <shift> is 0, 16, 32 or 48.
    
    The current Go assembler does not accept zero shifts, such as "op $0, Rd" and "op $(0<<(16|32|48)), Rd" instructions.
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/compress/flate/deflatefast.go

    			e.table[i] = tableEntry{}
    		}
    		e.cur = maxMatchOffset + 1
    		return
    	}
    
    	// Shift down everything in the table that isn't already too far away.
    	for i := range e.table[:] {
    		v := e.table[i].offset - e.cur + maxMatchOffset + 1
    		if v < 0 {
    			// We want to reset e.cur to maxMatchOffset + 1, so we need to shift
    			// all table entries down by (e.cur - (maxMatchOffset + 1)).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-text-shift.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/gen/arithConstGen.go

    						fncCnst1.Execute(w, fd)
    						fd.Number = number
    					}
    
    					fncCnst2.Execute(w, fd)
    				}
    			}
    
    			// signed test cases
    			if len(s.i) > 0 {
    				// don't generate tests for shifts by signed integers
    				if o.name == "lsh" || o.name == "rsh" {
    					continue
    				}
    				for _, i := range s.i {
    					fd.Number = fmt.Sprintf("%d", i)
    					fd.FNumber = strings.Replace(fd.Number, "-", "Neg", -1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. src/compress/flate/testdata/huffman-text-shift.wb.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-text-shift.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
Back to top