Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for 16x16 (0.06 sec)

  1. src/go/types/sizes_test.go

    	for _, tv := range types_ {
    		if ts, ok := tv.Type.(*types.Struct); ok {
    			return ts
    		}
    	}
    	t.Fatalf("failed to find a struct type in src:\n%s\n", src)
    	return nil
    }
    
    // go.dev/issue/16316
    func TestMultipleSizeUse(t *testing.T) {
    	const src = `
    package main
    
    type S struct {
        i int
        b bool
        s string
        n int
    }
    `
    	ts := findStructType(t, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictResolutionDetails.java

        }
    
        public Collection<? extends ComponentResolutionState> getCandidates() {
            return candidates;
        }
    
        @Override
        public String getDisplayName() {
            StringBuilder sb = new StringBuilder(16 + 16 * candidates.size());
            sb.append("between versions ");
            Iterator<? extends ComponentResolutionState> it = candidates.iterator();
            boolean more = false;
            while (it.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

          /*diag_handler=*/[](const tfrt::DecodedDiagnostic&
                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
          corert->get(), corert->get()->GetHostContext()->GetHostDeviceRef());
      CHECK(fallback_op_handler);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/runtime/sys_plan9_amd64.s

    // Grab error string due to a syscall made
    // in entersyscall mode, without going
    // through the allocator (issue 4994).
    // See ../syscall/asm_plan9_amd64.s:/·Syscall/
    TEXT runtime·errstr(SB),NOSPLIT,$16-16
    	get_tls(AX)
    	MOVQ	g(AX), BX
    	MOVQ	g_m(BX), BX
    	MOVQ	(m_mOS+mOS_errstr)(BX), CX
    	MOVQ	CX, 0(SP)
    	MOVQ	$ERRMAX, 8(SP)
    	CALL	errstr<>(SB)
    	CALL	runtime·findnull(SB)
    	MOVQ	8(SP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/net/netip/slow_test.go

    // two-byte value.
    func parseWord(s string) (byte, byte, error) {
    	if len(s) > 4 {
    		return 0, 0, fmt.Errorf("parseWord(%q): invalid word", s)
    	}
    	ret, err := strconv.ParseUint(s, 16, 16)
    	if err != nil {
    		return 0, 0, err
    	}
    	return uint8(ret >> 8), uint8(ret), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              UnsignedInteger.fromIntBits(a),
              UnsignedInteger.valueOf(value),
              UnsignedInteger.valueOf(Long.toString(value)),
              UnsignedInteger.valueOf(Long.toString(value, 16), 16));
        }
        equalsTester.testEquals();
      }
    
      public void testIntValue() {
        for (int a : TEST_INTS) {
          UnsignedInteger aUnsigned = UnsignedInteger.fromIntBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/crypto/aes/asm_s390x.s

    	CMPBEQ	R9, $16, kma
    	MVC	$8, 16(R8), 96(R1)
    	CMPBEQ	R9, $24, kma
    	MVC	$8, 24(R8), 104(R1)
    
    kma:
    	KMA	R2, R6, R4       // Cipher Message with Authentication
    	BVS	kma
    
    	MOVD	tag+104(FP), R2
    	MVC	$16, 16(R1), 0(R2) // copy tag to output
    	MOVD	cnt+112(FP), R8
    	MVC	$4, 12(R1), 12(R8) // update counter value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. .github/workflows/update-rbe.yml

            map sigbuild-r2.14-clang-python3.9 2.14-python3.9
            map sigbuild-r2.14-clang-python3.10 2.14-python3.10
            map sigbuild-r2.14-clang-python3.11 2.14-python3.11
            # TF 2.16
            map sigbuild-r2.16 2.16-python3.11
            map sigbuild-r2.16-python3.9 2.16-python3.9
            map sigbuild-r2.16-python3.10 2.16-python3.10
            map sigbuild-r2.16-python3.11 2.16-python3.11
            map sigbuild-r2.16-python3.12 2.16-python3.12
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              UnsignedInteger.fromIntBits(a),
              UnsignedInteger.valueOf(value),
              UnsignedInteger.valueOf(Long.toString(value)),
              UnsignedInteger.valueOf(Long.toString(value, 16), 16));
        }
        equalsTester.testEquals();
      }
    
      public void testIntValue() {
        for (int a : TEST_INTS) {
          UnsignedInteger aUnsigned = UnsignedInteger.fromIntBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Es     uint16
    	Ds     uint16
    	Rip    int64
    	Cs     int64
    	Rflags int64
    	Rsp    int64
    	Ss     int64
    }
    
    type FpReg struct {
    	Env   [4]uint64
    	Acc   [8][16]uint8
    	Xacc  [16][16]uint8
    	Spare [12]uint64
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    	Len  uint64
    }
    
    type Kevent_t struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top