Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _return (0.19 sec)

  1. src/runtime/memclr_arm.s

    _4loop:
    	CMP	TMP, TO
    	BHS	_1tail
    
    	MOVW.P	R0, 4(TO)		/* implicit write back */
    	B	_4loop
    
    _1tail:
    	CMP	TO, TOE
    	BEQ	_return
    
    	MOVBU.P	R0, 1(TO)		/* implicit write back */
    	B	_1tail
    
    _return:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/memmove_arm.s

    	MOVW.P	4(FROM), TMP1	/* implicit write back */
    	MOVW.P	TMP1, 4(TS)	/* implicit write back */
    	B	_f4loop
    
    _f1tail:
    	CMP	TS, TE
    	BEQ	_return
    
    	MOVBU.P	1(FROM), TMP	/* implicit write back */
    	MOVBU.P	TMP, 1(TS)	/* implicit write back */
    	B	_f1tail
    
    _return:
    	MOVW	to+0(FP), R0
    	RET
    
    _bunaligned:
    	CMP	$2, TMP		/* is TMP < 2 ? */
    
    	MOVW.LT	$8, RSHIFT		/* (R(n)<<24)|(R(n-1)>>8) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/token_string.go

    func (i token) String() string {
    	i -= 1
    	if i >= token(len(_token_index)-1) {
    		return "token(" + strconv.FormatInt(int64(i+1), 10) + ")"
    	}
    	return _token_name[_token_index[i]:_token_index[i+1]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/tokens.go

    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    	_Struct      // struct
    	_Switch      // switch
    	_Type        // type
    	_Var         // var
    
    	// empty line comment to exclude it from .String
    	tokenCount //
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    visitLabel(label2);
                    _ALOAD(0);
                    _INVOKESPECIAL(OBJECT_TYPE, "toString", RETURN_STRING);
                    _ARETURN();
                }});
            }
    
            private void generateServiceRegistrySupport() {
                // GENERATE private transient ServiceLookup services;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                }});
    
                //
                // Add `toString()`
                //
                publicMethod("toString", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // return this.name
                    _ALOAD(0);
                    _GETFIELD(generatedTypeName, NAME_FIELD, STRING);
                    _ARETURN();
                }});
    
                //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            //   However, because of the type of the object returned by `getArchiveFile()` is a `Property`,
            //   we assume it's mutable, even though the _return type_ is `Provider`.
            //   We will produce the correct message after https://github.com/gradle/gradle/issues/26141 is fixed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _ARETURN() {
            super.visitInsn(ARETURN);
        }
    
        public void _IRETURN_OF(Type type) {
            super.visitInsn(type.getOpcode(IRETURN));
        }
    
        public void _IRETURN() {
            super.visitInsn(IRETURN);
        }
    
        public void _RETURN() {
            super.visitInsn(RETURN);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    	{_Range, "range", 0, 0},
    	{_Return, "return", 0, 0},
    	{_Select, "select", 0, 0},
    	{_Struct, "struct", 0, 0},
    	{_Switch, "switch", 0, 0},
    	{_Type, "type", 0, 0},
    	{_Var, "var", 0, 0},
    }
    
    func TestComments(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	}
    }
    
    func groupFor(d Decl) (token, *Group) {
    	switch d := d.(type) {
    	case *ImportDecl:
    		return _Import, d.Group
    	case *ConstDecl:
    		return _Const, d.Group
    	case *TypeDecl:
    		return _Type, d.Group
    	case *VarDecl:
    		return _Var, d.Group
    	case *FuncDecl:
    		return _Func, nil
    	default:
    		panic("unreachable")
    	}
    }
    
    type printGroup struct {
    	node
    	Tok   token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top