Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for offset2 (0.23 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    	// Block 0x38, offset 0xe00
    	0xe00: 0x000a,
    	// Block 0x39, offset 0xe40
    	0xe40: 0x0009,
    	0xe5b: 0x007a, 0xe5c: 0x006a,
    	// Block 0x3a, offset 0xe80
    	0xe92: 0x000c, 0xe93: 0x000c, 0xe94: 0x000c,
    	0xeb2: 0x000c, 0xeb3: 0x000c, 0xeb4: 0x000c,
    	// Block 0x3b, offset 0xec0
    	0xed2: 0x000c, 0xed3: 0x000c,
    	0xef2: 0x000c, 0xef3: 0x000c,
    	// Block 0x3c, offset 0xf00
    	0xf34: 0x000c, 0xf35: 0x000c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go

    	// Block 0x38, offset 0xe00
    	0xe00: 0x000a,
    	// Block 0x39, offset 0xe40
    	0xe40: 0x0009,
    	0xe5b: 0x007a, 0xe5c: 0x006a,
    	// Block 0x3a, offset 0xe80
    	0xe92: 0x000c, 0xe93: 0x000c, 0xe94: 0x000c,
    	0xeb2: 0x000c, 0xeb3: 0x000c, 0xeb4: 0x000c,
    	// Block 0x3b, offset 0xec0
    	0xed2: 0x000c, 0xed3: 0x000c,
    	0xef2: 0x000c, 0xef3: 0x000c,
    	// Block 0x3c, offset 0xf00
    	0xf34: 0x000c, 0xf35: 0x000c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 109.2K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js.map

    $(this._element).closest('.navbar').length > 0\n  }\n\n  _getOffset() {\n    const offset = {}\n\n    if (typeof this._config.offset === 'function') {\n      offset.fn = (data) => {\n        data.offsets = {\n          ...data.offsets,\n          ...this._config.offset(data.offsets, this._element) || {}\n        }\n\n        return data\n      }\n    } else {\n      offset.offset = this._config.offset\n    }\n\n    return offset\n  }\n\n  _getPopperConfig() {\n    const popperConfig = {\n      placement:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    			rel.Type = objabi.R_ADDRPOWER_PCREL34
    		} else if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    
    	case 75: // 32 bit offset symbol loads (got/toc/addr)
    		var rel *obj.Reloc
    		v := p.From.Offset
    
    		// Offsets in DS form loads must be a multiple of 4
    		inst := c.opload(p.As)
    		switch p.From.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"LD1R","Bits":"0|Q|0|0|1|1|0|1|1|1|0|11111:5|1|1|0|0|size:2|Rn:5|Rt:5","Arch":"Post-index Immediate offset variant","Syntax":"LD1R { <Vt>.<T> }, [<Xn|SP>], <imm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	R_MIPS_TLS_GOTTPREL    R_MIPS = 46 /* 16 bit GOT offset for IE */
    	R_MIPS_TLS_TPREL32     R_MIPS = 47 /* TP-relative offset, 32 bit */
    	R_MIPS_TLS_TPREL64     R_MIPS = 48 /* TP-relative offset, 64 bit */
    	R_MIPS_TLS_TPREL_HI16  R_MIPS = 49 /* TP-relative offset, high 16 bits */
    	R_MIPS_TLS_TPREL_LO16  R_MIPS = 50 /* TP-relative offset, low 16 bits */
    
    	R_MIPS_PC32 R_MIPS = 248 /* 32 bit PC relative reference */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    				switch st.kind {
    				case abiStepIntReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					intFromReg(&regArgs, st.ireg, st.size, offset)
    				case abiStepPointer:
    					s := add(s, st.offset, "precomputed value offset")
    					*((*unsafe.Pointer)(s)) = regArgs.Ptrs[st.ireg]
    				case abiStepFloatReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					floatFromReg(&regArgs, st.freg, st.size, offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Append constant and custom op buffers at the end of the flatbuffer and
      // calculate the offsets
      void AppendBufferData(absl::Cord& result);
    
      // Update constant & custom op buffer offsets
      // Return false if fail to update offset
      bool UpdateBufferOffsets(tflite::Model* mutable_model);
    
      // check if Flatbuffer builder can no longer hold the given amount of the data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    		if offset < -DISP20/2 || offset >= DISP20/2 {
    			if reg != int16(regtmp(p)) {
    				zRRE(op_LGR, regtmp(p), uint32(reg), asm)
    			}
    			zRIL(_a, op_AGFI, regtmp(p), uint32(offset), asm)
    			reg = int16(regtmp(p))
    			offset = 0
    		}
    		switch p.As {
    		case ASTMY:
    			if offset >= 0 && offset < DISP12 {
    				zRS(op_STM, uint32(rstart), uint32(rend), uint32(reg), uint32(offset), asm)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    				}
    			}
    
    			o = ldr.SymValue(rs) + r.Add()
    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top