Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for ret (0.03 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/gfni_avx512f.s

    	VGF2P8MULB Z8, Z15, K1, Z5                         // 62d20549cfe8
    	VGF2P8MULB 7(SI)(DI*8), Z15, K1, Z5                // 62f20549cfacfe07000000
    	VGF2P8MULB -15(R14), Z15, K1, Z5                   // 62d20549cfaef1ffffff
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 22.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s

    	VPDPWSSDS Z25, Z12, K2, Z17                        // 62821d4a53c9
    	VPDPWSSDS 17(SP), Z12, K2, Z17                     // 62e21d4a538c2411000000
    	VPDPWSSDS -17(BP)(SI*4), Z12, K2, Z17              // 62e21d4a538cb5efffffff
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 27.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    if (canon.equalsIgnoreCase(f.canon)) {
                        try {
                            ret = getAddress().equals(f.getAddress());
                        } catch( UnknownHostException uhe ) {
                            ret = getServer().equalsIgnoreCase(f.getServer());
                        }
                        return ret;
                    }
                }
            }
    
            return false;
        }
    /*
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/aes_avx512f.s

    	VAESENCLAST 7(SI)(DI*1), Z8, Z11                   // 62723d48dd9c3e07000000 or 6272bd48dd9c3e07000000
    	VAESENCLAST 15(DX)(BX*8), Z8, Z11                  // 62723d48dd9cda0f000000 or 6272bd48dd9cda0f000000
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 29K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s

    	VPMULTISHIFTQB Z13, Z21, K7, Z24                   // 6242d54783c5
    	VPMULTISHIFTQB 7(AX)(CX*4), Z21, K7, Z24           // 6262d54783848807000000
    	VPMULTISHIFTQB 7(AX)(CX*1), Z21, K7, Z24           // 6262d54783840807000000
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 28.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512er.s

    	VRSQRT28SS -7(CX)(DX*4), X2, K1, X1                // 62f26d09cd8c91f9ffffff or 62f26d29cd8c91f9ffffff or 62f26d49cd8c91f9ffffff
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 28.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

          }
        }
        // Get edges from body nodes to outputs and from inputs to outputs
        for (const OpDef::ArgDef& arg : fdef.signature().output_arg()) {
          const auto& iter = fdef.ret().find(arg.name());
          if (iter != fdef.ret().end()) {
            const auto& v = a_edges.insert({iter->second, arg.name()});
            ASSERT_TRUE(v.second) << "Duplicate edge " << iter->second << " -> "
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VCLZLSBB V1,R2                  // 10400e02
    	VCTZLSBB V1,R2                  // 10410e02
    
    	XSMAXJDP VS1,VS2,VS3            // f0611480
    	XSMINJDP VS1,VS2,VS3            // f06114c0
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 13:14:38 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64error.s

    	SHA256SU1	V1.S4, V2.B16, V3.S4                     // ERROR "invalid arrangement"
    	SHA1H	V1.B16, V2.B16                                   // ERROR "invalid operands"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  10. src/archive/zip/reader.go

    	if name == "." {
    		return dotFile
    	}
    
    	dir, elem, _ := split(name)
    	files := r.fileList
    	i, _ := slices.BinarySearchFunc(files, dir, func(a fileListEntry, dir string) (ret int) {
    		idir, ielem, _ := split(a.name)
    		if dir != idir {
    			return strings.Compare(idir, dir)
    		}
    		return strings.Compare(ielem, elem)
    	})
    	if i < len(files) {
    		fname := files[i].name
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top