Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Rx (0.03 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    // In case of base+displacement mode instructions if
    // the offset is 0, usage of (Rx) is equivalent to 0(Rx)
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// move constants
    	MOVD $1, R3                     // 38600001
    	MOVD $-1, R4                    // 3880ffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    			})
    			re := cache[rx]
    			if re == nil {
    				var err error
    				re, err = regexp.Compile(rx)
    				if err != nil {
    					t.Fatalf("%s:%d: invalid regexp \"%s\" in ERROR line: %v", t.goFileName(), lineNum, rx, err)
    				}
    				cache[rx] = re
    			}
    			prefix := fmt.Sprintf("%s:%d", short, lineNum)
    			errs = append(errs, wantedError{
    				reStr:   rx,
    				re:      re,
    				prefix:  prefix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    		return true
    
    	// When compiling with gcc's -fno-plt option (no PLT), the following code and relocation
    	// sequences may be present to call an external function:
    	//
    	//   1. addis Rx,foo@R_PPC64_PLT16_HA
    	//   2. ld 12,foo@R_PPC64_PLT16_LO_DS(Rx)
    	//   3. mtctr 12 ; foo@R_PPC64_PLTSEQ
    	//   4. bctrl ; foo@R_PPC64_PLTCALL
    	//   5. ld r2,24(r1)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

                            const Output& gx_2) {
      auto sx_1 = Shape(scope, op.input(0));
      auto sx_2 = Shape(scope, op.input(1));
      auto rx = internal::BroadcastGradientArgs(scope, sx_1, sx_2);
      auto dx_1 = Reshape(scope, Sum(scope, gx_1, rx.r0), sx_1);
      auto dx_2 = Reshape(scope, Sum(scope, gx_2, rx.r1), sx_2);
      grad_outputs->push_back(dx_1);
      grad_outputs->push_back(dx_2);
      return scope.status();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if sa.Ifindex < 0 || sa.Ifindex > 0x7fffffff {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_CAN
    	sa.raw.Ifindex = int32(sa.Ifindex)
    	rx := (*[4]byte)(unsafe.Pointer(&sa.RxID))
    	for i := 0; i < 4; i++ {
    		sa.raw.Addr[i] = rx[i]
    	}
    	tx := (*[4]byte)(unsafe.Pointer(&sa.TxID))
    	for i := 0; i < 4; i++ {
    		sa.raw.Addr[i+4] = tx[i]
    	}
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrCAN, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/compress/flate/testdata/huffman-rand-max.in

    ��UЊ	�){�y�mn3v�!Ⰸ�7�^��7���xi,�Z'X=�_Ӿ
    L62:)i]h���l`���l�˟!�*��k~(�(��q�:��9�Q��}���]�OS�5�����`�2�U�rO�hcy�Mk'�w�ڻTj�O1G�VL�A_��!@�Ӻ�6�X�Ȉ������}g�<�ՃR�wq_	ִMS��?���X5v�r��h%0l��qF֘�5��]��p�CF�Y�:M��H�I���ADKf�m�k���\׃Ul�rX�O�d��;DO����jё�f�����V}b��Y��#B�xm�x�gzA�;�Y�ϣ���^�NN���߸�^�3�~��z���g2
    ���>��t9������B��>a����]ț;�Tu����\�Z3!H
    �8����O����<��+ݬsȃ��F}�3�|K��b��N���Z�?��d���a	�o�8M	���,Y��p$t���z��TM3�/}5`7!�HH9��=!&AF�[�#��At7��a�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	}
    	res.Body.Close()
    
    	// Force child to exit cleanly.
    	Post(fmt.Sprintf("http://%s/quit", ln.Addr()), "", nil)
    	child.Wait()
    
    	rx := regexp.MustCompile(`\b(n64:)?sendfile(64)?\(`)
    	out := buf.String()
    	if !rx.MatchString(out) {
    		t.Errorf("no sendfile system call found in:\n%s", out)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5"/></svg>',settings:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"/><ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"/><circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"/><rect x="1" y="3" width="3" height="1"/><rect x="10" y="3" width="8" height="1"/><rect x="1" y="9" width="8" height="1"/><rect x="15"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		case nil:
    			// If aux offset and aux int are both 0, and the same
    			// input and output regs are used, no instruction
    			// needs to be generated, since it would just be
    			// addi rx, rx, 0.
    			if v.AuxInt != 0 || v.Args[0].Reg() != v.Reg() {
    				p := s.Prog(ppc64.AMOVD)
    				p.From.Type = obj.TYPE_ADDR
    				p.From.Reg = v.Args[0].Reg()
    				p.From.Offset = v.AuxInt
    				p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    	defer globalNetPerfRX.Disconnect()
    
    	connectTime := time.Now()
    	ctx := newContext(r, w, "DevNull")
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		atomic.AddUint64(&globalNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF {
    			// If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top