Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 560 (0.03 sec)

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

    jmp_label_2:
    	ADD	$0, R0, R0
    	BL.EQ	jmp_label_2 // CALL.EQ 560 // fdffff0b
    	BL.NE	jmp_label_2 // CALL.NE 560 // fcffff1b
    	BL.CS	jmp_label_2 // CALL.CS 560 // fbffff2b
    	BL.CC	jmp_label_2 // CALL.CC 560 // faffff3b
    	BL.MI	jmp_label_2 // CALL.MI 560 // f9ffff4b
    	BL.PL	jmp_label_2 // CALL.PL 560 // f8ffff5b
    	BL.VS	jmp_label_2 // CALL.VS 560 // f7ffff6b
    	BL.VC	jmp_label_2 // CALL.VC 560 // f6ffff7b
    	BL.HI	jmp_label_2 // CALL.HI 560 // f5ffff8b
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-12-15 20:51
    - 69K bytes
    - Viewed (0)
  2. src/archive/tar/strconv.go

    		}
    
    		var x uint64
    		for i, c := range b {
    			c ^= inv // Inverts c only if inv is 0xff, otherwise does nothing
    			if i == 0 {
    				c &= 0x7f // Ignore signal bit in first byte
    			}
    			if (x >> 56) > 0 {
    				p.err = ErrHeader // Integer overflow
    				return 0
    			}
    			x = x<<8 | uint64(c)
    		}
    		if (x >> 63) > 0 {
    			p.err = ErrHeader // Integer overflow
    			return 0
    		}
    		if inv == 0xff {
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-08-01 14:28
    - 9K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            .build(),
        )
        val response = getResponse(newRequest("/"))
        assertThat(response.code).isEqualTo(200)
        assertThat(response.message).isEqualTo("OK")
        assertContent(
          "STR;FFMJ2;Frankfurt;RTCM 2.1;1(1),3(19),16(59);0;GPS;GREF;DEU;50.12;8.68;0;1;GPSNet V2.10;none;N;N;560;Demo\nENDSOURCETABLE",
          response,
        )
      }
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 132.6K bytes
    - Viewed (0)
  4. lib/fips140/v1.0.0.zip

    536(SP), R13 CALL p256SqrInternal(SB) MOVQ R10, 576(SP) MOVQ R11, 584(SP) MOVQ R12, 592(SP) MOVQ R13, 600(SP) MOVQ 480(SP), R10 MOVQ 488(SP), R11 MOVQ 496(SP), R12 MOVQ 504(SP), R13 CALL p256SqrInternal(SB) MOVQ R10, 544(SP) MOVQ R11, 552(SP) MOVQ R12, 560(SP) MOVQ R13, 568(SP) MOVQ 480(SP), R14 MOVQ 488(SP), R15 MOVQ 496(SP), DI MOVQ 504(SP), SI CALL p256MulInternal(SB) MOVQ R10, 608(SP) MOVQ R11, 616(SP) MOVQ R12, 624(SP) MOVQ R13, 632(SP) MOVQ 352(SP), R14 MOVQ 360(SP), R15 MOVQ 368(SP), DI MOVQ 376(SP),...
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-01-29 15:10
    - 635K bytes
    - Viewed (0)
Back to top