Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for Dst_len (5.17 sec)

  1. src/internal/bytealg/indexbyte_wasm.s

    	I64Sub
    	Get R0
    	I64Eqz $0
    	Select
    	I64Store ret+32(FP)
    
    	RET
    
    TEXT ·IndexByteString(SB), NOSPLIT, $0-32
    	Get SP
    	I64Load s_base+0(FP)
    	I32WrapI64
    	I32Load8U c+16(FP)
    	I64Load s_len+8(FP)
    	I32WrapI64
    	Call memchr<>(SB)
    	I64ExtendI32S
    	Set R0
    
    	I64Const $-1
    	Get R0
    	I64Load s_base+0(FP)
    	I64Sub
    	Get R0
    	I64Eqz $0
    	Select
    	I64Store ret+24(FP)
    
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 03:59:19 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC
    GLOBL ·poly1305Mask<>(SB), RODATA, $16
    
    // func update(state *[7]uint64, msg []byte)
    TEXT ·update(SB), $0-32
    	MOVD state+0(FP), R3
    	MOVD msg_base+8(FP), R4
    	MOVD msg_len+16(FP), R5
    
    	MOVD 0(R3), R8   // h0
    	MOVD 8(R3), R9   // h1
    	MOVD 16(R3), R10 // h2
    	MOVD 24(R3), R11 // r0
    	MOVD 32(R3), R12 // r1
    
    	CMP R5, $16
    	BLT bytes_between_0_and_15
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/mangling_util.cc

      return absl::StartsWith(str, kAttributePrefix);
    }
    
    absl::string_view DemangleAttributeName(absl::string_view str) {
      DCHECK(IsMangledAttributeName(str));
      return str.substr(std::strlen(kAttributePrefix));
    }
    
    MangledKind GetMangledKind(absl::string_view str) {
      if (absl::StartsWith(str, kDataTypePrefix)) {
        return MangledKind::kDataType;
      } else if (absl::StartsWith(str, kTensorShapePrefix)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    	int		c;
    #ifdef MB_CUR_MAX
    	int		w;
    #endif
    
    	if (!u)
    		printf("NIL");
    	else if (!*u && len <= 1)
    		printf("NULL");
    	else if (test & TEST_EXPAND)
    	{
    		if (len < 0)
    			len = strlen((char*)u);
    		e = u + len;
    		if (test & TEST_DELIMIT)
    			printf("\"");
    		while (u < e)
    			switch (c = *u++)
    			{
    			case '\\':
    				printf("\\\\");
    				break;
    			case '"':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    // that it is installed before the Go code starts.
    
    static void pipeHandler(int signo, siginfo_t* info, void* ctxt) {
    	const char *s = "unexpected SIGPIPE\n";
    	write(2, s, strlen(s));
    	exit(EXIT_FAILURE);
    }
    
    static void init(void) __attribute__ ((constructor (200)));
    
    static void init() {
        struct sigaction sa;
    
    	memset(&sa, 0, sizeof sa);
    	sa.sa_sigaction = pipeHandler;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/ASN1Util.java

            }
            int length = readLength(in, limit, false);
            byte[] content = new byte[length];
            in.read(content);
            return content;
        }
    
        // shamelessly stolen from BC ASN1InputStream
        static int readTagNumber(InputStream s, int tag)
                throws IOException
        {
            int tagNo = tag & 0x1f;
    
            //
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * this class separates _allocations_ from _streams_. An allocation is created by a call, used for
     * one or more streams, and then released. An allocated connection won't be stolen by other calls
     * while a redirect or authorization challenge is being handled.
     *
     * When the maximum concurrent streams limit is reduced, some allocations will be rescinded.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/jsonpath.go

    				v = x
    			} else {
    				v = reflect.Zero(v.Type().Elem())
    			}
    		default:
    			return false
    		}
    	}
    	if _, isNil := indirect(v); isNil {
    		return false
    	}
    	return true
    }
    
    // stolen from text/template
    // indirect returns the item at the end of indirection, and a bool to indicate if it's nil.
    // We indirect through pointers and empty interfaces (only) because
    // non-empty interfaces have methods we might need.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/indexbyte_amd64.s

    	MOVQ b_base+0(FP), SI
    	MOVQ b_len+8(FP), BX
    	MOVB c+24(FP), AL
    	LEAQ ret+32(FP), R8
    	JMP  indexbytebody<>(SB)
    
    TEXT	·IndexByteString(SB), NOSPLIT, $0-32
    	MOVQ s_base+0(FP), SI
    	MOVQ s_len+8(FP), BX
    	MOVB c+16(FP), AL
    	LEAQ ret+24(FP), R8
    	JMP  indexbytebody<>(SB)
    
    // input:
    //   SI: data
    //   BX: data len
    //   AL: byte sought
    //   R8: address to put result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_darwin_arm64.c

    	if (!res) {
    		fprintf(stderr, "runtime/cgo: cannot get URL string\n");
    		return;
    	}
    
    	// url is of the form "file:///path/to/Info.plist".
    	// strip it down to the working directory "/path/to".
    	int url_len = strlen(buf);
    	if (url_len < sizeof("file://")+sizeof("/Info.plist")) {
    		fprintf(stderr, "runtime/cgo: bad URL: %s\n", buf);
    		return;
    	}
    	buf[url_len-sizeof("/Info.plist")+1] = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top