Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for s_size (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }
    	SYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }
    	SYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }
    	SYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_netbsd_386.go

    	SYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }
    	SYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }
    	SYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }
    	SYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/symbolbuilder.go

    }
    
    func (sb *SymbolBuilder) addSymRef(tgt Sym, add int64, typ objabi.RelocType, rsize int) int64 {
    	if sb.kind == 0 {
    		sb.kind = sym.SDATA
    	}
    	i := sb.size
    
    	sb.size += int64(rsize)
    	sb.Grow(sb.size)
    
    	r, _ := sb.AddRel(typ)
    	r.SetSym(tgt)
    	r.SetOff(int32(i))
    	r.SetSiz(uint8(rsize))
    	r.SetAdd(add)
    
    	return i + int64(rsize)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

      return operations_.size() - 1;
    }
    
    int Rematerializer::AddTensor(const SizeT size) {
      tensors_.emplace_back();
      tensors_.back().size = size;
      return tensors_.size() - 1;
    }
    
    void Rematerializer::DelUse(const int ioperation, const int itensor) {
      auto& tensor = tensors_[itensor];
      auto& operation = operations_[ioperation];
    
      const auto& size = tensor.size;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	St_mode         uint32    // 0x8
    	St_ino          uint32    // 0xc
    	St_dev          uint32    // 0x10
    	St_nlink        uint32    // 0x14
    	St_uid          uint32    // 0x18
    	St_gid          uint32    // 0x1c
    	St_size         uint64    // 0x20
    	St_atime        uint32    // 0x28
    	St_mtime        uint32    // 0x2c
    	St_ctime        uint32    // 0x30
    	St_rdev         uint32    // 0x34
    	St_auditoraudit uint32    // 0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	// address, by encoding it into the instruction.
    	R_ADDRMIPS
    	// R_ADDROFF resolves to a 32-bit offset from the beginning of the section
    	// holding the data being relocated to the referenced symbol.
    	R_ADDROFF
    	R_SIZE
    	R_CALL
    	R_CALLARM
    	R_CALLARM64
    	R_CALLIND
    	R_CALLPOWER
    	// R_CALLMIPS (only used on mips64) resolves to non-PC-relative target address
    	// of a CALL (JAL) instruction, by encoding the address into the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. doc/asm.html

    After the symbol, the arguments are flags (see below)
    and the frame size, a constant (but see below):
    </p>
    
    <pre>
    TEXT runtime·profileloop(SB),NOSPLIT,$8
    	MOVQ	$runtime·profileloop1(SB), CX
    	MOVQ	CX, 0(SP)
    	CALL	runtime·externalthreadhandler(SB)
    	RET
    </pre>
    
    <p>
    In the general case, the frame size is followed by an argument size, separated by a minus sign.
    (It's not a subtraction, just idiosyncratic syntax.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  8. src/debug/elf/file.go

    	Type      SectionType
    	Flags     SectionFlag
    	Addr      uint64
    	Offset    uint64
    	Size      uint64
    	Link      uint32
    	Info      uint32
    	Addralign uint64
    	Entsize   uint64
    
    	// FileSize is the size of this section in the file in bytes.
    	// If a section is compressed, FileSize is the size of the
    	// compressed data, while Size (above) is the size of the
    	// uncompressed data.
    	FileSize uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          return null;
        }
        return entry.getValue();
      }
    
      @SuppressWarnings("unchecked")
      final Segment<K, V, E, S>[] newSegmentArray(int ssize) {
        return (Segment<K, V, E, S>[]) new Segment<?, ?, ?, ?>[ssize];
      }
    
      // Inner Classes
    
      /**
       * Segments are specialized versions of hash tables. This subclass inherits from ReentrantLock
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    "no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:i})=>i("borderColor...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top