Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for cx (0.18 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPCOMPRESSB X13, K1, X28                           // 62127d0963ec
    	VPCOMPRESSB X8, K1, X28                            // 62127d0963c4
    	VPCOMPRESSB X7, K1, -7(CX)(DX*1)                   // 62f27d09637c11f9
    	VPCOMPRESSB X13, K1, -7(CX)(DX*1)                  // 62727d09636c11f9
    	VPCOMPRESSB X8, K1, -7(CX)(DX*1)                   // 62727d09634411f9
    	VPCOMPRESSB X7, K1, -15(R14)(R15*4)                // 62927d09637cbef1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 97.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512er.s

    	VRCP28PD Z2, K2, Z5                                // 62f2fd4acaea
    	VRCP28PD -7(CX)(DX*1), K2, Z5                      // 62f2fd4acaac11f9ffffff
    	VRCP28PD -15(R14)(R15*4), K2, Z5                   // 6292fd4acaacbef1ffffff
    	VRCP28PD Z2, K2, Z23                               // 62e2fd4acafa
    	VRCP28PD -7(CX)(DX*1), K2, Z23                     // 62e2fd4acabc11f9ffffff
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 28.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52LUQ -7(CX)(DX*8), Y9, K1, Y2               // 62f2b529b494d1f9ffffff
    	VPMADD52LUQ Y3, Y1, K1, Y2                         // 62f2f529b4d3
    	VPMADD52LUQ Y2, Y1, K1, Y2                         // 62f2f529b4d2
    	VPMADD52LUQ Y9, Y1, K1, Y2                         // 62d2f529b4d1
    	VPMADD52LUQ 17(SP)(BP*1), Y1, K1, Y2               // 62f2f529b4942c11000000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/operand_test.go

    	{"$~15", "$-16"},
    	{"(((8)&0xf)*4)(SP)", "32(SP)"},
    	{"(((8-14)&0xf)*4)(SP)", "40(SP)"},
    	{"(6+8)(AX)", "14(AX)"},
    	{"(8*4)(BP)", "32(BP)"},
    	{"(AX)", "(AX)"},
    	{"(AX)(CX*8)", "(AX)(CX*8)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP)(DX*4)", "(BP)(DX*4)"},
    	{"(BP)(R8*4)", "(BP)(R8*4)"},
    	{"(BX)", "(BX)"},
    	{"(DI)", "(DI)"},
    	{"(DI)(BX*1)", "(DI)(BX*1)"},
    	{"(DX)", "(DX)"},
    	{"(R9)", "(R9)"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s

    	CMPL runtime·writeBarrier(SB), $0
    	MOVQ (CX)(R15*1), AX // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a19(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	MOVQ AX, (R15) // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a20(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 15 20:45:41 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/gfni_avx512f.s

    	VGF2P8AFFINEQB $126, -7(CX)(DX*4), Y12, K2, Y0     // 62f39d2ace8491f9ffffff7e
    	VGF2P8AFFINEQB $126, Y17, Y1, K2, Y0               // 62b3f52acec17e
    	VGF2P8AFFINEQB $126, Y7, Y1, K2, Y0                // 62f3f52acec77e
    	VGF2P8AFFINEQB $126, Y9, Y1, K2, Y0                // 62d3f52acec17e
    	VGF2P8AFFINEQB $126, 15(R8)(R14*4), Y1, K2, Y0     // 6293f52ace84b00f0000007e
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 22.6K bytes
    - Viewed (0)
  7. doc/asm.html

    <code>g</code> pointer into.
    </p>
    
    <p>
    For example, the sequence to load <code>g</code> and <code>m</code>
    using <code>CX</code> looks like this:
    </p>
    
    <pre>
    #include "go_tls.h"
    #include "go_asm.h"
    ...
    get_tls(CX)
    MOVL	g(CX), AX     // Move g into AX.
    MOVL	g_m(AX), BX   // Move g.m into BX.
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_bitalg.s

    	VPOPCNTW (CX), K3, X11                             // 6272fd0b5419
    	VPOPCNTW 99(R15), K3, X11                          // 6252fd0b549f63000000
    	VPOPCNTW X20, K3, X23                              // 62a2fd0b54fc
    	VPOPCNTW X5, K3, X23                               // 62e2fd0b54fd
    	VPOPCNTW X25, K3, X23                              // 6282fd0b54f9
    	VPOPCNTW (CX), K3, X23                             // 62e2fd0b5439
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/386.s

    	SHLL	$4, foo+4(SB)
    	SHLL	$4, foo+4(SB):AX // SHLL $4, AX, foo+4(SB)
    
    // LTYPEM spec6	{ outcode(int($1), &$2); }
    	MOVL	AX, BX
    	MOVL	$4, BX
    
    // LTYPEI spec7	{ outcode(int($1), &$2); }
    	IMULL	AX
    	IMULL	$4, CX
    	IMULL	AX, BX
    
    // LTYPEXC spec9	{ outcode(int($1), &$2); }
    	CMPPD	X0, X1, 4
    	CMPPD	foo+4(SB), X1, 4
    
    // LTYPEX spec10	{ outcode(int($1), &$2); }
    	PINSRD	$1, (AX), X0
    	PINSRD	$2, foo+4(FP), X0
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 2K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/pilot-dashboard.json

                {
                  "datasource": {
                    "type": "prometheus",
                    "uid": "${datasource}"
                  },
                  "expr": "sum(irate(envoy_cluster_upstream_cx_total{cluster_name=\"xds-grpc\"}[1m]))",
                  "format": "time_series",
                  "hide": false,
                  "intervalFactor": 1,
                  "legendFormat": "XDS Connections",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
Back to top