Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 120 for Rd (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			if strings.HasPrefix(op, "F") && (strings.HasSuffix(op, "D") || strings.HasSuffix(op, "DP")) {
    				// FMOVDP, FXCHD, etc
    				src = 8
    				break
    			}
    			if strings.HasPrefix(op, "P") && strings.HasSuffix(op, "RD") {
    				// PINSRD, PEXTRD, etc
    				src = 4
    				break
    			}
    			if strings.HasPrefix(op, "F") && (strings.HasSuffix(op, "F") || strings.HasSuffix(op, "FP")) {
    				// FMOVFP, FXCHF, etc
    				src = 4
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	}
    }
    
    func (c *check) mustDownload(ctx context.Context, client *minio.Client, bucket string) {
    	c.Helper()
    	rd, err := client.GetObject(ctx, bucket, "some-object", minio.GetObjectOptions{})
    	if err != nil {
    		c.Fatalf("download did not succeed got %#v", err)
    	}
    	if _, err = io.Copy(io.Discard, rd); err != nil {
    		c.Fatalf("download did not succeed got %#v", err)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    				p.Spadj = int32(-p.From.Offset)
    			}
    		case obj.AGETCALLERPC:
    			if cursym.Leaf() {
    				/* MOVD LR, Rd */
    				p.As = AMOVD
    				p.From.Type = obj.TYPE_REG
    				p.From.Reg = REG_LR
    			} else {
    				/* MOVD (RSP), Rd */
    				p.As = AMOVD
    				p.From.Type = obj.TYPE_MEM
    				p.From.Reg = REGSP
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xArgR32          // arg r32
    	xArgR32M16       // arg r32/m16
    	xArgR32M8        // arg r32/m8
    	xArgR32op        // arg r32 with +rd in opcode
    	xArgR64          // arg r64
    	xArgR64M16       // arg r64/m16
    	xArgR64op        // arg r64 with +rd in opcode
    	xArgR8           // arg r8
    	xArgR8op         // arg r8 with +rb in opcode
    	xArgRAX          // arg RAX
    	xArgRDX          // arg RDX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	}
    }
    
    func insistRequestFromUser(t *testing.T, qs fq.QueueSet, username string) {
    	qsd := qs.Dump(true)
    	goodRequest := func(rd debug.RequestDump) bool {
    		return rd.UserName == username
    	}
    	goodSliceOfRequests := SliceMapReduce(goodRequest, or)
    	if goodSliceOfRequests(qsd.QueuelessExecutingRequests) {
    		t.Logf("Found user %s among queueless requests", username)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    		for _, r := range f.Sections {
    			if r.Type != SHT_RELA && r.Type != SHT_REL {
    				continue
    			}
    			if int(r.Info) != i {
    				continue
    			}
    			rd, err := r.Data()
    			if err != nil {
    				return nil, err
    			}
    			err = f.applyRelocations(b, rd)
    			if err != nil {
    				return nil, err
    			}
    		}
    		return b, nil
    	}
    
    	// There are many DWARf sections, but these are the ones
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        return tensorflow::str_util::StripPrefix(absolute_path, root_dir_);
      }
    
      // Initializes the randomness used to ensure test isolation.
      static void InitializeTestRNG() {
        std::random_device rd;
        std::mt19937 gen(rd());
        std::uniform_int_distribution<> distribution;
        rng_val_ = distribution(gen);
      }
    
      static void SetCloudPath(const std::string& cloud_path) {
        cloud_path_ = cloud_path;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	closec chan bool
    
    	mu     sync.Mutex // guards rd/wd
    	rd, wd time.Time  // read, write deadline
    	noopConn
    }
    
    func (c *slowTestConn) SetDeadline(t time.Time) error {
    	c.SetReadDeadline(t)
    	c.SetWriteDeadline(t)
    	return nil
    }
    
    func (c *slowTestConn) SetReadDeadline(t time.Time) error {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.rd = t
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    	// exception.
    	case 96: /* UNDEF */
    		o1 = 0xf7fabcfd
    
    	case 97: /* CLZ Rm, Rd */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    		o1 |= (uint32(p.To.Reg) & 15) << 12
    		o1 |= (uint32(p.From.Reg) & 15) << 0
    
    	case 98: /* MULW{T,B} Rs, Rm, Rd */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    		o1 |= (uint32(p.To.Reg) & 15) << 16
    		o1 |= (uint32(p.From.Reg) & 15) << 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMP(U|WU)const [d] (ANDconst z [c])) && uint64(d) > uint64(c) => (FlagLT)
    
    (ORN x (MOVDconst [-1])) => x
    
    (S(RAD|RD|LD) x (MOVDconst [c])) => (S(RAD|RD|LD)const [c&63 | (c>>6&1*63)] x)
    (S(RAW|RW|LW) x (MOVDconst [c])) => (S(RAW|RW|LW)const [c&31 | (c>>5&1*31)] x)
    
    (Addr {sym} base) => (MOVDaddr {sym} [0] base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top