Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for gcmCount (0.32 sec)

  1. src/crypto/aes/gcm_s390x.go

    // the KIMD instruction for GHASH. The second implementation (gcmKMA) uses the
    // newer KMA instruction which performs both operations.
    
    // gcmCount represents a 16-byte big-endian count value.
    type gcmCount [16]byte
    
    // inc increments the rightmost 32-bits of the count value by 1.
    func (x *gcmCount) inc() {
    	byteorder.BePutUint32(x[len(x)-4:], byteorder.BeUint32(x[len(x)-4:])+1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_s390x.s

    	BVS     loop        // branch back if interrupted
    	MVC     $16, (R1), (R8)
    	MOVD	$0, R0
    	RET
    
    // func kmaGCM(fn code, key, dst, src, aad []byte, tag *[16]byte, cnt *gcmCount)
    TEXT ·kmaGCM(SB),NOSPLIT,$112-120
    	MOVD	fn+0(FP), R0
    	MOVD	$params-112(SP), R1
    
    	// load ptr/len pairs
    	LMG	dst+32(FP), R2, R3 // R2=base R3=len
    	LMG	src+56(FP), R4, R5 // R4=base R5=len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

            def events = []
            long usage = initial
            long gcCount = 0
            20.times { count ->
                usage += leakRate
                if (usage > max) {
                    usage = max
                }
                gcCount = (gcRate * count) as long
                events << ["timeOffset": count, "poolUsage": usage, "gcCount": gcCount]
            }
            return events
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/runtime/debug.go

    		total += mp.mLockProfile.waitTime.Load()
    	}
    
    	return total
    }
    
    // NumGoroutine returns the number of goroutines that currently exist.
    func NumGoroutine() int {
    	return int(gcount())
    }
    
    //go:linkname debug_modinfo runtime/debug.modinfo
    func debug_modinfo() string {
    	return modinfo
    }
    
    // mayMoreStackPreempt is a maymorestack hook that forces a preemption
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    		// this is close, then we'll only need to STW once (on the next
    		// call).
    		return int(gcount()), false
    	}
    
    	semacquire(&goroutineProfile.sema)
    
    	ourg := getg()
    
    	pcbuf := makeProfStack() // see saveg() for explanation
    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/metrics.go

    				out.scalar = uint64(gomaxprocs)
    			},
    		},
    		"/sched/goroutines:goroutines": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = uint64(gcount())
    			},
    		},
    		"/sched/latencies:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				sched.timeToRun.write(out)
    			},
    		},
    		"/sched/pauses/stopping/gc:seconds": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      TF_SetStatus(status, TF_OK, "");
      TF_VLog(1, "Successful read of %s @ %u of size: %u", path.c_str(), offset,
              read);
      stream.read(buffer, read);
      read = stream.gcount();
      if (read < buffer_size) {
        // Check stat cache to see if we encountered an interrupted read.
        tf_gcs_filesystem::GcsFileStat stat;
        if (gcs_file->stat_cache->Lookup(path, &stat)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		gp.racectx = racegostart(abi.FuncPCABIInternal(newextram) + sys.PCQuantum)
    	}
    	// put on allg for garbage collector
    	allgadd(gp)
    
    	// gp is now on the allg list, but we don't want it to be
    	// counted by gcount. It would be more "proper" to increment
    	// sched.ngfree, but that requires locking. Incrementing ngsys
    	// has the same effect.
    	sched.ngsys.Add(1)
    
    	// Add m to the extra list.
    	addExtraM(mp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top