Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,219 for 2014 (0.04 sec)

  1. src/runtime/memmove_ppc64x.s

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // See memmove Go doc for important implementation constraints.
    
    // func memmove(to, from unsafe.Pointer, n uintptr)
    
    // target address
    #define TGT R3
    // source address
    #define SRC R4
    // length to move
    #define LEN R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_arm.s

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    // ARM version of md5block.go
    
    //go:build !purego
    
    #include "textflag.h"
    
    // SHA-1 block routine. See sha1block.go for Go equivalent.
    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/runtime/syscall_solaris.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    var (
    	libc_chdir,
    	libc_chroot,
    	libc_close,
    	libc_execve,
    	libc_fcntl,
    	libc_forkx,
    	libc_gethostname,
    	libc_getpid,
    	libc_ioctl,
    	libc_setgid,
    	libc_setgroups,
    	libc_setrlimit,
    	libc_setsid,
    	libc_setuid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    // Copyright 2014 Google Inc. All Rights Reserved.
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/internal/profile/proto.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is a simple protocol buffer encoder and decoder.
    //
    // A protocol message must implement the message interface:
    //   decoder() []decoder
    //   encode(*buffer)
    //
    // The decode method returns a slice indexed by field number that gives the
    // function to decode that field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. src/runtime/os_solaris.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    type mts struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    type mscratch struct {
    	v [6]uintptr
    }
    
    type mOS struct {
    	waitsema uintptr // semaphore for parking on locks
    	perrno   *int32  // pointer to tls errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/debug/macho/fat.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package macho
    
    import (
    	"encoding/binary"
    	"fmt"
    	"internal/saferio"
    	"io"
    	"os"
    )
    
    // A FatFile is a Mach-O universal binary that contains at least one architecture.
    type FatFile struct {
    	Magic  uint32
    	Arches []FatArch
    	closer io.Closer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/runtime/signal_ppc64x.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (aix || linux || openbsd) && (ppc64 || ppc64le)
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_riscv64.s

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // RISC-V's atomic operations have two bits, aq ("acquire") and rl ("release"),
    // which may be toggled on and off. Their precise semantics are defined in
    // section 6.3 of the specification, but the basic idea is as follows:
    //
    //   - If neither aq nor rl is set, the CPU may reorder the atomic arbitrarily.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/context/context_test.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package context
    
    // Tests in package context cannot depend directly on package testing due to an import cycle.
    // If your test does requires access to unexported members of the context package,
    // add your test below as `func XTestFoo(t testingT)` and add a `TestFoo` to x_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top