Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 388 for alignment (0.16 sec)

  1. src/unicode/utf8/utf8.go

    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0b10000000
    	hicb = 0b10111111
    
    	// These names of these constants are chosen to give nice alignment in the
    	// table below. The first nibble is an index into acceptRanges or F for
    	// special one-byte cases. The second nibble is the Rune length or the
    	// Status for the special one-byte case.
    	xx = 0xF1 // invalid: size 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// returns true, we must do all loads before all stores, when lowering Move.
    	// The type of Move is used for the write barrier pass to insert write barriers
    	// and for alignment on some architectures.
    	// For pointerless types, it is possible for the type to be inaccurate.
    	// For type alignment and pointer information, use the type in Aux;
    	// for type size, use the size in AuxInt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	AssertIsLinkedTo(t, "../../bin/trivial", soname)
    	AssertHasRPath(t, "../../bin/trivial", gorootInstallDir)
    	// It is 19K on linux/amd64, with separate-code in binutils ld and 64k being most common alignment
    	// 4*64k should be enough, but this might need revision eventually.
    	checkSize(t, "../../bin/trivial", 256000)
    }
    
    // Build a trivial program in PIE mode that links against the shared runtime and check it runs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.integtests.resolve.alignment
    
    import org.gradle.integtests.fixtures.GradleMetadataResolveRunner
    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      operators:[Operator];
    
      // Name of this subgraph (used for debugging).
      name:string;
    }
    
    // Table of raw data buffers (used for constant tensors). Referenced by tensors
    // by index. The generous alignment accommodates mmap-friendly data structures.
    table Buffer {
      data:[ubyte] (force_align: 16);
    }
    
    table Metadata {
      // A human readable string to uniquely identify a Metadata.
      name:string;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    	}
    	// Infer units for keys without any units associated with
    	// numeric tag values.
    	for key := range encounteredKeys {
    		unit := numLabelUnits[key]
    		if unit == "" {
    			switch key {
    			case "alignment", "request":
    				numLabelUnits[key] = "bytes"
    			default:
    				numLabelUnits[key] = key
    			}
    		}
    	}
    
    	// Copy ignored units into more readable format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin_amd64.s

    	CALL	libc_kill(SB)
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVQ	fn+0(FP),    AX
    	MOVL	sig+8(FP),   DI
    	MOVQ	info+16(FP), SI
    	MOVQ	ctx+24(FP),  DX
    	MOVQ	SP, BX		// callee-saved
    	ANDQ	$~15, SP	// alignment for x86_64 ABI
    	CALL	AX
    	MOVQ	BX, SP
    	RET
    
    // This is the function registered during sigaction and is invoked when
    // a signal is received. It just redirects to the Go function sigtrampgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/runtime/hash_test.go

    // hash functions don't, so we only enable the difficult tests when
    // we know the AES implementation is available.
    
    // Sanity checks.
    // hash should not depend on values outside key.
    // hash should not depend on alignment.
    func TestSmhasherSanity(t *testing.T) {
    	r := rand.New(rand.NewSource(1234))
    	const REP = 10
    	const KEYMAX = 128
    	const PAD = 16
    	const OFFMAX = 16
    	for k := 0; k < REP; k++ {
    		for n := 0; n < KEYMAX; n++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      operators:[Operator];
    
      // Name of this subgraph (used for debugging).
      name:string;
    }
    
    // Table of raw data buffers (used for constant tensors). Referenced by tensors
    // by index. The generous alignment accommodates mmap-friendly data structures.
    table Buffer {
      data:[ubyte] (force_align: 16);
    }
    
    table Metadata {
      // A human readable string to uniquely identify a Metadata.
      name:string;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. src/runtime/iface.go

    }
    
    // The specialized convTx routines need a type descriptor to use when calling mallocgc.
    // We don't need the type to be exact, just to have the correct size, alignment, and pointer-ness.
    // However, when debugging, it'd be nice to have some indication in mallocgc where the types came from,
    // so we use named types here.
    // We then construct interface values of these types,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top