Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for IMMEDIATE (0.31 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		return Imm((x>>16)&(1<<4-1) + 1)
    
    	case arg_satimm5m1:
    		return Imm((x>>16)&(1<<5-1) + 1)
    
    	case arg_widthm1:
    		return Imm((x>>16)&(1<<5-1) + 1)
    
    	}
    }
    
    // decodeShift decodes the shift-by-immediate encoded in x.
    func decodeShift(x uint32) (Shift, uint8) {
    	count := (x >> 7) & (1<<5 - 1)
    	typ := Shift((x >> 5) & (1<<2 - 1))
    	switch typ {
    	case ShiftRight, ShiftRightSigned:
    		if count == 0 {
    			count = 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

      struct UncompilableNodeInfo {
        std::string name;
        // A list representing a stacktrace from the highest level node in
        // increasing call depth to immediate node that fails the
        // compilability checker.
        std::vector<StackFrame> stack_trace;
        std::string uncompilable_reason;
      };
    
      // Aggregates information about what kinds of ops are allowed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    	XOR	$341, R1, R23	// 38370155
    	OR	$254, R25, R13	// 372d00fe
    //
    // move immediate: macro for lui+or, addi, addis, and other combinations
    //
    //	LMOVW imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVW	$1, R1
    	MOVV	$1, R1
    
    //	LMOVW ximm ',' rreg
    //	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

          Platform.get().logCloseableLeak(message, callReference.callStackTrace)
    
          references.removeAt(i)
    
          // If this was the last allocation, the connection is eligible for immediate eviction.
          if (references.isEmpty()) {
            connection.idleAtNs = now - keepAliveDurationNs
            return 0
          }
        }
    
        return references.size
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (SRLI <t> [x] (MOVBUreg y)) && x >=  8 => (MOVDconst <t> [0])
    (SRLI <t> [x] (MOVHUreg y)) && x >= 16 => (MOVDconst <t> [0])
    (SRLI <t> [x] (MOVWUreg y)) && x >= 32 => (MOVDconst <t> [0])
    
    // Fold constant into immediate instructions where possible.
    (ADD (MOVDconst <t> [val]) x) && is32Bit(val) && !t.IsPtr() => (ADDI [val] x)
    (AND (MOVDconst [val]) x) && is32Bit(val) => (ANDI [val] x)
    (OR  (MOVDconst [val]) x) && is32Bit(val) => (ORI  [val] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. cmd/background-newdisks-heal-ops.go

    func (h *healingTracker) delete(ctx context.Context) error {
    	return h.disk.Delete(ctx, minioMetaBucket,
    		pathJoin(bucketMetaPrefix, healingTrackerFilename),
    		DeleteOptions{
    			Recursive: false,
    			Immediate: false,
    		},
    	)
    }
    
    func (h *healingTracker) isHealed(bucket string) bool {
    	h.mu.RLock()
    	defer h.mu.RUnlock()
    	for _, v := range h.HealedBuckets {
    		if v == bucket {
    			return true
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

        // available.
        xla_input->WaitForDefinitionEventOnStream(dst_device_to_device_stream);
    
        // Wait for the destination tensor buffers to be ready, if they are not
        // available for an immediate write.
        if (!dst_xla_context->transfer_manager()->CanShapedBufferBeAccessedNow(
                dst_compute_stream->parent(), xla_output->shaped_buffer())) {
          TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/os/pipe_test.go

    	}
    	if err := r.Close(); err != nil {
    		t.Fatal(err)
    	}
    	// Invoke the test program to run the test and write to a closed pipe.
    	// If sig is false:
    	// writing to stdout or stderr should cause an immediate SIGPIPE;
    	// writing to descriptor 3 should fail with EPIPE and then exit 0.
    	// If sig is true:
    	// all writes should fail with EPIPE and then exit 0.
    	for _, sig := range []bool{false, true} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ANDconst", argLength: 1, reg: regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp}}, clobberFlags: true, asm: "ANDCC", aux: "Int64", typ: "Int"}, // arg0&aux == 0 // and-immediate sets CC on PPC, always.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    			wantFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				`storageclasses.storage.k8s.io "Class_0" not found`),
    		},
    		{
    			name:                "unbound volume immediate binding mode",
    			Pod:                 createPodWithVolume("pod_1", "PVC_ImmediateSC"),
    			Node:                testNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
Back to top