Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 527 for Dword2 (0.17 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s

    	// load contants
    	// VLD4R (R10), [V0.S4, V1.S4, V2.S4, V3.S4]
    	WORD	$0x4D60E940
    
    	// load keys
    	// VLD4R 16(R4), [V4.S4, V5.S4, V6.S4, V7.S4]
    	WORD	$0x4DFFE884
    	// VLD4R 16(R4), [V8.S4, V9.S4, V10.S4, V11.S4]
    	WORD	$0x4DFFE888
    	SUB	$32, R4
    
    	// load counter + nonce
    	// VLD1R (R7), [V12.S4]
    	WORD	$0x4D40C8EC
    
    	// VLD3R (R6), [V13.S4, V14.S4, V15.S4]
    	WORD	$0x4D40E8CD
    
    	// update counter
    	VADD	V30.S4, V12.S4, V12.S4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/math/exp_s390x.s

    	WFMADB	V2, V1, V3, V1
    	RISBGZ	$57, $60, $3, R1, R3
    	WFMADB	V0, V4, V1, V0
    	MOVD	$·exptexp<>+0(SB), R2
    	WORD	$0x68432000	//ld	%f4,0(%r3,%r2)
    	FMADD	F4, F2, F2
    	SLD	$48, R1, R2
    	WFMADB	V2, V0, V4, V2
    	LDGR	R2, F0
    	FMADD	F0, F2, F0
    	FMOVD	F0, ret+8(FP)
    	RET
    L16:
    	WFCEDBS	V2, V2, V4
    	BVS	LEXITTAGexp
    	WORD	$0xED205000	//cdb	%f2,.L33-.L22(%r5)
    	BYTE	$0x00
    	BYTE	$0x19
    	BLT	L6
    	WFCEDBS	V2, V0, V0
    	BVS	L13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/bigstack_windows.c

    	// Windows doesn't like huge frames, so we grow the stack 64k at a time.
    	char x[64<<10];
    	if (bytes < sizeof x) {
    		bigStackCallback(x);
    	} else {
    		useStack(bytes - sizeof x);
    	}
    }
    
    static DWORD WINAPI threadEntry(LPVOID lpParam) {
    	useStack(STACK_SIZE - (128<<10));
    	return 0;
    }
    
    void bigStack(callback *cb) {
    	bigStackCallback = cb;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. src/runtime/testdata/testwinlibsignal/main.c

    #include <windows.h>
    #include <stdio.h>
    
    HANDLE waitForCtrlBreakEvent;
    
    BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
    {
        switch (fdwCtrlType)
        {
        case CTRL_BREAK_EVENT:
            SetEvent(waitForCtrlBreakEvent);
            return TRUE;
        default:
            return FALSE;
        }
    }
    
    int main(void)
    {
        waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
        if (!waitForCtrlBreakEvent) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. src/main/webapp/js/index.js

        return false;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#contentQuery").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
            fn: ["_default", "content", "title"],
            num: 10,
            lang: $("#langSearchOption").val()
          },
          boxCssInfo: {
            border: "1px solid rgba(82, 168, 236, 0.5)",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/math/big/decimal.go

    func (d *decimal) at(i int) byte {
    	if 0 <= i && i < len(d.mant) {
    		return d.mant[i]
    	}
    	return '0'
    }
    
    // Maximum shift amount that can be done in one pass without overflow.
    // A Word has _W bits and (1<<maxShift - 1)*10 + 9 must fit into Word.
    const maxShift = _W - 4
    
    // TODO(gri) Since we know the desired decimal precision when converting
    // a floating-point number, we may be able to limit the number of decimal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/MD4.java

        private static final int BLOCK_LENGTH = 64;       //    = 512 / 8;
    
        /**
         * 4 32-bit words (interim result)
         */
        private int[] context = new int[4];
    
        /**
         * Number of bytes processed so far mod. 2 power of 64.
         */
        private long count;
    
        /**
         * 512 bits input buffer = 16 x 32-bit words holds until reaches 512 bits.
         */
        private byte[] buffer = new byte[BLOCK_LENGTH];
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arch.go

    	case "s390x":
    		return archS390x()
    	case "wasm":
    		return archWasm()
    	}
    	return nil
    }
    
    func jumpX86(word string) bool {
    	return word[0] == 'J' || word == "CALL" || strings.HasPrefix(word, "LOOP") || word == "XBEGIN"
    }
    
    func jumpRISCV(word string) bool {
    	switch word {
    	case "BEQ", "BEQZ", "BGE", "BGEU", "BGEZ", "BGT", "BGTU", "BGTZ", "BLE", "BLEU", "BLEZ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  9. test-site/app/controllers/Suggest.java

                    .startObject("response")
                    .startArray("result")
                    .startObject()
                    .startArray("result");
    
                for(String word: response.getWords()) {
                    builder.value(word);
                }
    
                String json = builder.endArray()
                    .endObject()
                    .endArray()
                    .endObject()
                    .endObject().string();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/s390x.go

    // s390x instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj/s390x"
    )
    
    func jumpS390x(word string) bool {
    	switch word {
    	case "BRC",
    		"BC",
    		"BCL",
    		"BEQ",
    		"BGE",
    		"BGT",
    		"BL",
    		"BLE",
    		"BLEU",
    		"BLT",
    		"BLTU",
    		"BNE",
    		"BR",
    		"BVC",
    		"BVS",
    		"BRCT",
    		"BRCTG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 14:55:25 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top