Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 483 for dword (0.06 sec)

  1. tensorflow/c/experimental/ops/gen/common/case_format.cc

      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
      string result;
    
      bool inputStart = true;
      bool wordStart = true;
      for (const char c : str) {
        // Find a word start.
        if (c == delimiter) {
          // Repeated cases of wordStart means explicit delimiter usage.
          if (wordStart) {
            result.push_back(delimiter);
          }
          wordStart = true;
          continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/info.go

    // ICU prohibits breaking in such cases as well.
    
    // For the purpose of title casing we use an approximation of the Unicode Word
    // Breaking algorithm defined in Annex #29:
    // https://www.unicode.org/reports/tr29/#Default_Grapheme_Cluster_Table.
    //
    // For our approximation, we group the Word Break types into the following
    // categories, with associated rules:
    //
    // 1) Letter:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/loong64.go

    // Loong64 (LoongArch64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    	switch word {
    	case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL":
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd;
    
        static int computeForWord(int word) {
          return STRIDE_TABLE[3][word & 0xFF]
              ^ STRIDE_TABLE[2][(word >>> 8) & 0xFF]
              ^ STRIDE_TABLE[1][(word >>> 16) & 0xFF]
              ^ STRIDE_TABLE[0][word >>> 24];
        }
    
        static int combine(int csum, int crc) {
          csum ^= crc;
          for (int i = 0; i < 4; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  5. src/reflect/asm_amd64.s

    #include "go_asm.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 01 22:33:29 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. src/math/log_s390x.s

    	WFMADB	V6, V2, V1, V2
    	FMOVD	0(R9), F1
    	WFMADB	V6, V4, V1, V4
    	FMOVD	8(R4), F1
    	WFMADB	V0, V2, V4, V2
    	LDGR	R8, F4
    	WFMADB	V6, V2, V0, V2
    	WORD	$0xED401000	//msdb	%f1,%f4,0(%r1)
    	BYTE	$0x10
    	BYTE	$0x1F
    	MOVD	·logxl2<>+0(SB), R1
    	WORD	$0xB3130001	//lcdbr	%f0,%f1
    	LDGR	R1, F4
    	WFMADB	V0, V4, V2, V0
    L1:
    	FMOVD	F0, ret+8(FP)
    	RET
    L3:
    	LTDBR	F0, F0
    	BEQ	L20
    	BGE	L1
    	BVS	L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  7. src/encoding/csv/reader_test.go

    	Output: [][]string{{"#1", "2", "3"}, {"a", "b", "c"}},
    }, {
    	Name:       "LazyQuotes",
    	Input:      `§a "word",§"1"2",§a",§"b`,
    	Output:     [][]string{{`a "word"`, `1"2`, `a"`, `b`}},
    	LazyQuotes: true,
    }, {
    	Name:       "BareQuotes",
    	Input:      `§a "word",§"1"2",§a"`,
    	Output:     [][]string{{`a "word"`, `1"2`, `a"`}},
    	LazyQuotes: true,
    }, {
    	Name:       "BareDoubleQuotes",
    	Input:      `§a""b,§c`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. src/internal/reflectlite/value.go

    		// Value is indirect, but interface is direct. We need
    		// to load the data at v.ptr into the interface data word.
    		e.Data = *(*unsafe.Pointer)(v.ptr)
    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    	// to have any operation between the e.word and e.typ assignments
    	// that would let the garbage collector observe the partially-built
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/math/sinh_s390x.s

    	FCMPU   F1, F0
    	BGT             sinhIsInf
    
    	MOVD    $sinhrodataL21<>+0(SB), R5
    	LTDBR	F0, F0
    	MOVD    sinhxinit<>+0(SB), R1
    	FMOVD   F0, F4
    	MOVD    R1, R3
    	BLTU    L19
    	FMOVD   F0, F2
    L2:
    	WORD    $0xED205010     //cdb %f2,.L22-.L21(%r5)
    	BYTE    $0x00
    	BYTE    $0x19
    	BGE     L15     //jnl   .L15
    	BVS     L15
    	WFCEDBS V2, V2, V0
    	BEQ     L20
    L12:
    	FMOVD   F4, F0
    	FMOVD   F0, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/a.out.go

    	AVUPLL
    	AVUPLLB
    	AVUPLLH
    	AVUPLLF
    	AVUPL
    	AVUPLB
    	AVUPLHW
    	AVUPLF
    	AVMSLG
    	AVMSLEG
    	AVMSLOG
    	AVMSLEOG
    
    	ANOPH // NOP
    
    	// binary
    	ABYTE
    	AWORD
    	ADWORD
    
    	// Breakpoint
    	ABRRK
    
    	// end marker
    	ALAST
    
    	// aliases
    	ABR = obj.AJMP
    	ABL = obj.ACALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top