Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 202 for 0x20 (0.57 sec)

  1. src/regexp/exec_test.go

    	x := ^uint32(0)
    	for i := range text {
    		x += x
    		x ^= 1
    		if int32(x) < 0 {
    			x ^= 0x88888eef
    		}
    		if x%31 == 0 {
    			text[i] = '\n'
    		} else {
    			text[i] = byte(x%(0x7E+1-0x20) + 0x20)
    		}
    	}
    	return text
    }
    
    func BenchmarkMatch(b *testing.B) {
    	isRaceBuilder := strings.HasSuffix(testenv.Builder(), "-race")
    
    	for _, data := range benchData {
    		r := MustCompile(data.re)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/decodesym.go

    	return decodeRelocSym(ldr, symIdx, &relocs, int32(commonsize(arch))+int32(arch.PtrSize)) // 0x20 / 0x38
    }
    
    func decodetypePtrElem(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym) loader.Sym {
    	relocs := ldr.Relocs(symIdx)
    	return decodeRelocSym(ldr, symIdx, &relocs, int32(commonsize(arch))) // 0x1c / 0x30
    }
    
    func decodetypeStructFieldCount(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym) int {
    	data := ldr.Data(symIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/internal/notsha256/sha256block_amd64.s

    DATA K256<>+0x0c(SB)/4, $0xe9b5dba5 // k4
    DATA K256<>+0x10(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x14(SB)/4, $0x71374491 // k2
    DATA K256<>+0x18(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x1c(SB)/4, $0xe9b5dba5 // k4
    
    DATA K256<>+0x20(SB)/4, $0x3956c25b // k5 - k8
    DATA K256<>+0x24(SB)/4, $0x59f111f1
    DATA K256<>+0x28(SB)/4, $0x923f82a4
    DATA K256<>+0x2c(SB)/4, $0xab1c5ed5
    DATA K256<>+0x30(SB)/4, $0x3956c25b
    DATA K256<>+0x34(SB)/4, $0x59f111f1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1/generated.pb.go

    	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x6f, 0x1b, 0x45,
    	0x14, 0xf7, 0xd6, 0x8e, 0xed, 0x1d, 0x87, 0xda, 0x9d, 0x82, 0xba, 0xf2, 0x61, 0x6d, 0x72, 0x00,
    	0x17, 0xb5, 0xbb, 0x24, 0x82, 0x2a, 0xaa, 0x40, 0x22, 0x4b, 0x2a, 0x14, 0x90, 0x9a, 0x68, 0xda,
    	0x40, 0xc5, 0x01, 0x69, 0x62, 0x4f, 0xed, 0xc1, 0xf6, 0xcc, 0xb2, 0x33, 0xeb, 0xe0, 0x1b, 0x27,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  5. src/cmd/link/internal/s390x/asm.go

    		plt.AddUint8(0xe3)
    		plt.AddUint8(0x10)
    		plt.AddUint8(0xf0)
    		plt.AddUint8(0x38)
    		plt.AddUint8(0x00)
    		plt.AddUint8(0x24)
    		// larl    %r1,_GLOBAL_OFFSET_TABLE_
    		plt.AddUint8(0xc0)
    		plt.AddUint8(0x10)
    		plt.AddSymRef(ctxt.Arch, got.Sym(), 6, objabi.R_PCRELDBL, 4)
    		// mvc     48(8,%r15),8(%r1)
    		plt.AddUint8(0xd2)
    		plt.AddUint8(0x07)
    		plt.AddUint8(0xf0)
    		plt.AddUint8(0x30)
    		plt.AddUint8(0x10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. src/encoding/asn1/asn1.go

    func checkInteger(bytes []byte) error {
    	if len(bytes) == 0 {
    		return StructuralError{"empty integer"}
    	}
    	if len(bytes) == 1 {
    		return nil
    	}
    	if (bytes[0] == 0 && bytes[1]&0x80 == 0) || (bytes[0] == 0xff && bytes[1]&0x80 == 0x80) {
    		return StructuralError{"integer not minimally-encoded"}
    	}
    	return nil
    }
    
    // parseInt64 treats the given bytes as a big-endian, signed integer and
    // returns the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block_amd64.s

    DATA K256<>+0x1c(SB)/4, $0xe9b5dba5 // k4
    
    DATA K256<>+0x20(SB)/4, $0x3956c25b // k5 - k8
    DATA K256<>+0x24(SB)/4, $0x59f111f1
    DATA K256<>+0x28(SB)/4, $0x923f82a4
    DATA K256<>+0x2c(SB)/4, $0xab1c5ed5
    DATA K256<>+0x30(SB)/4, $0x3956c25b
    DATA K256<>+0x34(SB)/4, $0x59f111f1
    DATA K256<>+0x38(SB)/4, $0x923f82a4
    DATA K256<>+0x3c(SB)/4, $0xab1c5ed5
    
    DATA K256<>+0x40(SB)/4, $0xd807aa98 // k9 - k12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

        continuation.length = continuation.left
        continuation.padding = padding
        continuation.flags = flags
        continuation.streamId = streamId
    
        // TODO: Concat multi-value headers with 0x0, except COOKIE, which uses 0x3B, 0x20.
        // http://tools.ietf.org/html/draft-ietf-httpbis-http2-17#section-8.1.2.5
        hpackReader.readHeaders()
        return hpackReader.getAndResetHeaderList()
      }
    
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/BaseEncoding.java

          }
    
          // We can't use .clone() because of GWT.
          byte[] newDecodabet = Arrays.copyOf(decodabet, decodabet.length);
          for (int upper = 'A'; upper <= 'Z'; upper++) {
            int lower = upper | 0x20;
            byte decodeUpper = decodabet[upper];
            byte decodeLower = decodabet[lower];
            if (decodeUpper == -1) {
              newDecodabet[upper] = decodeLower;
            } else {
              checkState(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/unicode/utf8/utf8.go

    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x00-0x0F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x10-0x1F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x20-0x2F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x30-0x3F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x40-0x4F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top