Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 273 for retSize (0.15 sec)

  1. src/reflect/value.go

    		*valueRegs = methodRegs
    	}
    	if retSize := methodFrameType.Size() - methodABI.retOffset; retSize > 0 {
    		valueRet := add(valueFrame, valueABI.retOffset, "valueFrame's size > retOffset")
    		methodRet := add(methodFrame, methodABI.retOffset, "methodFrame's size > retOffset")
    		// This copies to the stack. Write barriers are not needed.
    		memmove(valueRet, methodRet, retSize)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

            getTerminal().setAttributes(attributes);
        }
    
        @Override
        public Size getSize() {
            return getTerminal().getSize();
        }
    
        @Override
        public void setSize(Size size) {
            getTerminal().setSize(size);
        }
    
        @Override
        public int getWidth() {
            return getTerminal().getWidth();
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

            store.clear();
        }
    
        @Override
        public void remove(BlockPayload block) {
            Block container = block.getBlock();
            store.remove(block);
            freeListBlock.add(container.getPos(), container.getSize());
        }
    
        @Override
        public <T extends BlockPayload> T readFirst(Class<T> payloadType) {
            return store.read(freeListBlock.getNextPos(), payloadType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    			sh.Entsize = uint64(ctxt.Arch.RegSize)
    			sh.Addralign = uint64(ctxt.Arch.RegSize)
    			shsym(sh, ldr, ldr.Lookup(".got", 0))
    
    			sh = elfshname(".got.plt")
    			sh.Type = uint32(elf.SHT_PROGBITS)
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    			sh.Entsize = uint64(ctxt.Arch.RegSize)
    			sh.Addralign = uint64(ctxt.Arch.RegSize)
    			shsym(sh, ldr, ldr.Lookup(".got.plt", 0))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/runtime/msize.go

    		if reqSize <= smallSizeMax-8 {
    			return uintptr(class_to_size[size_to_class8[divRoundUp(reqSize, smallSizeDiv)]]) - (reqSize - size)
    		}
    		return uintptr(class_to_size[size_to_class128[divRoundUp(reqSize-smallSizeMax, largeSizeDiv)]]) - (reqSize - size)
    	}
    	// Large object. Align reqSize up to the next page. Check for overflow.
    	reqSize += pageSize - 1
    	if reqSize < size {
    		return size
    	}
    	return reqSize &^ (pageSize - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSet.java

       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
      @VisibleForTesting
      static int chooseTableSize(int setSize) {
        setSize = Math.max(setSize, 2);
        // Correct the size for open addressing to match desired load factor.
        if (setSize < CUTOFF) {
          // Round up to the next highest power of 2.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            verifyTaskIds()
            verifyTaskDetails(RegisterTaskBuildOperationType, withPath(':', ':foo')).children.empty
            def realize = verifyTaskDetails(RealizeTaskBuildOperationType, withPath(':', ':foo'))
            realize.children.empty
            realize.details.eager == false
        }
    
        def "op during realize are child ops"() {
            given:
            register('foo')
            register('bar')
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/config.go

    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    	RegSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.RegSize
    	Types          Types
    	lowerBlock     blockRewriter  // block lowering function, first round
    	lowerValue     valueRewriter  // value lowering function, first round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

        protected applyPluginUnqualified(File target = buildFile) {
            target << "apply plugin: '${getPluginName()}'\n"
        }
    
        def "does not realize all possible tasks"() {
            // TODO: This isn't done yet, we still realize many tasks
            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
                'xctest', // Almost, still realizes compileTestSwift
    
                'visual-studio',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top