Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for d_val (0.03 sec)

  1. src/runtime/vdso_elf64.go

    	sh_addralign uint64 /* Section alignment */
    	sh_entsize   uint64 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int64  /* Dynamic entry type */
    	d_val uint64 /* Integer value */
    }
    
    type elfVerdaux struct {
    	vda_name uint32 /* Version or dependency names */
    	vda_next uint32 /* Offset in bytes to next verdaux entry */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/vdso_elf32.go

    	sh_addralign uint32 /* Section alignment */
    	sh_entsize   uint32 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int32  /* Dynamic entry type */
    	d_val uint32 /* Integer value */
    }
    
    type elfVerdaux struct {
    	vda_name uint32 /* Version or dependency names */
    	vda_next uint32 /* Offset in bytes to next verdaux entry */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/runtime/vdso_linux.go

    	info.symstrings = nil
    	info.symtab = nil
    	info.versym = nil
    	info.verdef = nil
    	for i := 0; dyn[i].d_tag != _DT_NULL; i++ {
    		dt := &dyn[i]
    		p := info.loadOffset + uintptr(dt.d_val)
    		switch dt.d_tag {
    		case _DT_STRTAB:
    			info.symstrings = (*[vdsoSymStringsSize]byte)(unsafe.Pointer(p))
    		case _DT_SYMTAB:
    			info.symtab = (*[vdsoSymTabSize]elfSym)(unsafe.Pointer(p))
    		case _DT_HASH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. src/internal/bytealg/count_s390x.s

    	VLL R_LEN, (R_PTR), V_VAL
    	VLL R_LEN, (R_MPTR), V_MASK
    
    	// Compare each byte in input chunk against byte to be counted.
    	// Each byte element will be set to either 0 (no match) or 1 (match).
    	VCEQB V_CHAR, V_VAL, V_VAL
    	VN    V_MASK, V_VAL, V_VAL
    
    	// Accumulate matched byte count in 128-bit integer value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	DT_ENCODING     DynTag = 32 /* Values greater than or equal to DT_ENCODING
    	   and less than DT_LOOS follow the rules for
    	   the interpretation of the d_un union
    	   as follows: even == 'd_ptr', even == 'd_val'
    	   or none */
    	DT_PREINIT_ARRAY   DynTag = 32 /* Address of the array of pointers to pre-initialization functions. */
    	DT_PREINIT_ARRAYSZ DynTag = 33 /* Size in bytes of the array of pre-initialization functions. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue53702.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type Elem struct{}
    
    func (*Elem) Wait(callback func()) {}
    
    type Base struct {
    	elem [8]*Elem
    }
    
    var g_val = 1
    
    func (s *Base) Do() *int {
    	resp := &g_val
    	for _, e := range s.elem {
    		e.Wait(func() {
    			*resp = 0
    		})
    	}
    	return resp
    }
    
    type Sub struct {
    	*Base
    }
    
    func main() {
    	a := Sub{new(Base)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 14 00:14:04 UTC 2022
    - 551 bytes
    - Viewed (0)
  7. src/crypto/internal/hpke/hpke.go

    	}
    	if err != nil {
    		return nil, nil, err
    	}
    	dhVal, err := privEph.ECDH(pubRecipient)
    	if err != nil {
    		return nil, nil, err
    	}
    	encPubEph := privEph.PublicKey().Bytes()
    
    	encPubRecip := pubRecipient.Bytes()
    	kemContext := append(encPubEph, encPubRecip...)
    
    	return dh.ExtractAndExpand(dhVal, kemContext), encPubEph, nil
    }
    
    type Sender struct {
    	aead cipher.AEAD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/make_test_graphs.py

      y = variables.Variable(1.0, name='y')
      updates = control_flow_ops.no_op()
      for _ in range(3):
        with ops.control_dependencies([updates]):
          x_val = x.read_value() + y
          updates = x.assign_sub(0.1 * x_val)
    
      array_ops.identity(updates, name='result')
    
    
    def write_graph(build_graph, out_dir):
      """Build a graph using build_graph and write it out."""
      g = ops.Graph()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_arm64.go

    const (
    	_O_RDONLY   = 0x0
    	_O_WRONLY   = 0x1
    	_O_CREAT    = 0x40
    	_O_TRUNC    = 0x200
    	_O_NONBLOCK = 0x800
    	_O_CLOEXEC  = 0x80000
    )
    
    type usigset struct {
    	__val [16]uint64
    }
    
    type stackt struct {
    	ss_sp     *byte
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    	ss_size   uintptr
    }
    
    type sigcontext struct {
    	fault_address uint64
    	/* AArch64 registers */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            Args:
              use_variable: If True, creates a variable for weight.
            """
            super().__init__()
            w_val = np.random.randn(128, 32).astype('f4')
            if use_variable:
              self.w = variables.Variable(w_val)
            else:
              self.w = w_val
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top