Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for FST (0.04 sec)

  1. src/runtime/cgo/gcc_loong64.S

    	st.d	$r27, $r3, 40
    	st.d	$r28, $r3, 48
    	st.d	$r29, $r3, 56
    	st.d	$r30, $r3, 64
    	st.d	$r2, $r3, 72
    	st.d	$r22, $r3, 80
    	fst.d	$f24, $r3, 88
    	fst.d	$f25, $r3, 96
    	fst.d	$f26, $r3, 104
    	fst.d	$f27, $r3, 112
    	fst.d	$f28, $r3, 120
    	fst.d	$f29, $r3, 128
    	fst.d	$f30, $r3, 136
    	fst.d	$f31, $r3, 144
    
    	move	$r18, $r4 // save R4
    	move	$r19, $r6
    	jirl	$r1, $r5, 0	// call setg_gcc (clobbers R4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 18:57:04 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

                if (map != null) {
                    synonymMap = map;
                    fst = synonymMap.fst;
                    if (fst == null) {
                        throw new IllegalArgumentException("fst must be non-null");
                    }
                    fstReader = fst.getBytesReader();
                    scratchArc = new FST.Arc<>();
                    clearAttributes();
                }
            }
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java

                    ((SolrSynonymParser) parser).parse(rulesReader);
                }
    
                final SynonymMap localSynonymMap = parser.build();
                if (localSynonymMap.fst == null) {
                    synonymMap = null;
                    return;
                }
    
                synonymMap = localSynonymMap;
    
                if (reloadableFile != null) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/crypto/aes/block.go

    // license that can be found in the LICENSE file.
    
    // This Go implementation is derived in part from the reference
    // ANSI C implementation, which carries the following notice:
    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    // source position in path. path must not be empty.
    func firstInSrc(path []Object) int {
    	fst, pos := 0, path[0].Pos()
    	for i, t := range path[1:] {
    		if cmpPos(t.Pos(), pos) < 0 {
    			fst, pos = i+1, t.Pos()
    		}
    	}
    	return fst
    }
    
    func (check *Checker) constDecl(obj *Const, typ, init syntax.Expr, inherited bool) {
    	assert(obj.typ == nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    // source position in path. path must not be empty.
    func firstInSrc(path []Object) int {
    	fst, pos := 0, path[0].Pos()
    	for i, t := range path[1:] {
    		if cmpPos(t.Pos(), pos) < 0 {
    			fst, pos = i+1, t.Pos()
    		}
    	}
    	return fst
    }
    
    type (
    	decl interface {
    		node() ast.Node
    	}
    
    	importDecl struct{ spec *ast.ImportSpec }
    	constDecl  struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			args = append(args, "st0")
    		}
    
    	case FPTAN, FSINCOS, FUCOMPP, FCOMPP, FYL2X, FPATAN, FXTRACT, FPREM1, FPREM, FYL2XP1, FSCALE:
    		if len(args) == 0 {
    			args = []string{"st0", "st1"}
    		}
    
    	case FST, FSTP, FISTTP, FIST, FISTP, FBSTP:
    		if len(args) == 1 {
    			args = append(args, "st0")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	}
    	return regBytes(arg)
    }
    
    func isFloat(op Op) bool {
    	switch op {
    	case FADD, FCOM, FCOMP, FDIV, FDIVR, FIADD, FICOM, FICOMP, FIDIV, FIDIVR, FILD, FIMUL, FIST, FISTP, FISTTP, FISUB, FISUBR, FLD, FMUL, FST, FSTP, FSUB, FSUBR:
    		return true
    	}
    	return false
    }
    
    func isFloatInt(op Op) bool {
    	switch op {
    	case FIADD, FICOM, FICOMP, FIDIV, FIDIVR, FILD, FIMUL, FIST, FISTP, FISTTP, FISUB, FISUBR:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	FPTAN:           "FPTAN",
    	FRNDINT:         "FRNDINT",
    	FRSTOR:          "FRSTOR",
    	FSCALE:          "FSCALE",
    	FSIN:            "FSIN",
    	FSINCOS:         "FSINCOS",
    	FSQRT:           "FSQRT",
    	FST:             "FST",
    	FSTP:            "FSTP",
    	FSUB:            "FSUB",
    	FSUBP:           "FSUBP",
    	FSUBR:           "FSUBR",
    	FSUBRP:          "FSUBRP",
    	FTST:            "FTST",
    	FUCOM:           "FUCOM",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/vnd.adobe.premiere",
    				"image/vnd.cns.inf2",
    				"image/vnd.djvu",
    				"image/vnd.dwg",
    				"image/vnd.dxf",
    				"image/vnd.fastbidsheet",
    				"image/vnd.fpx",
    				"image/vnd.fst",
    				"image/vnd.fujixerox.edmics-mmr",
    				"image/vnd.fujixerox.edmics-rlc",
    				"image/vnd.globalgraphics.pgb",
    				"image/vnd.microsoft.icon",
    				"image/vnd.mix",
    				"image/vnd.ms-modi",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top