Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for regabi (0.2 sec)

  1. src/runtime/defs1_netbsd_arm.go

    }
    
    type mcontextt struct {
    	__gregs     [17]uint32
    	_           [4]byte   // EABI
    	__fpu       [272]byte // EABI
    	_mc_tlsbase uint32
    	_           [4]byte // EABI
    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	_           [4]byte // EABI
    	uc_mcontext mcontextt
    	__uc_pad    [2]int32
    }
    
    type keventt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.As == APUSHQ && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_BP {
    			pushbp = p
    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    	}
    	if pushbp == nil {
    		ctxt.Diag("missing frame pointer instruction: PUSHQ BP")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
            registerOrderBy(field, false);
        }
    
        protected void registerOrderBy(String field, boolean ascOrDesc) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
            registerOrderBy(field, false);
        }
    
        protected void registerOrderBy(String field, boolean ascOrDesc) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (1)
  6. guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/a.out.go

    	REG_XER = REG_SPR0 + 1
    	REG_LR  = REG_SPR0 + 8
    	REG_CTR = REG_SPR0 + 9
    
    	REGZERO = REG_R0 /* set to zero */
    	REGSP   = REG_R1
    	REGSB   = REG_R2
    	REGRET  = REG_R3
    	REGARG  = -1      /* -1 disables passing the first argument in register */
    	REGRT1  = REG_R20 /* reserved for runtime, duffzero and duffcopy */
    	REGRT2  = REG_R21 /* reserved for runtime, duffcopy */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     * We only broadcast the subset of events that influence the “plain console”, because this is all we need right now.
     * The build scan infrastructure has some knowledge of how different versions of Gradle respond to these events
     * with regard to console rendering and effectively emulate.
     *
     * Ideally, we would emit a more concrete model.
     * This would be something like more clearly separating logging output from “user code” from Gradle's “UI” output,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/a.out.go

    	REG_FCC31
    
    	REG_LAST = REG_FCC31 // the last defined register
    
    	REG_SPECIAL = REG_FCSR0
    
    	REGZERO = REG_R0 // set to zero
    	REGLINK = REG_R1
    	REGSP   = REG_R3
    	REGRET  = REG_R20 // not use
    	REGARG  = -1      // -1 disables passing the first argument in register
    	REGRT1  = REG_R20 // reserved for runtime, duffzero and duffcopy
    	REGRT2  = REG_R21 // reserved for runtime, duffcopy
    	REGCTXT = REG_R29 // context for closures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/abi.go

    			symName = sym.Pkg.Prefix + "." + sym.Name
    		}
    		symName = s.canonicalize(symName)
    
    		// Apply definitions.
    		defABI, hasDefABI := s.defs[symName]
    		if hasDefABI {
    			if len(fn.Body) != 0 {
    				base.ErrorfAt(fn.Pos(), 0, "%v defined in both Go and assembly", fn)
    			}
    			fn.ABI = defABI
    		}
    
    		if fn.Pragma&ir.CgoUnsafeArgs != 0 {
    			// CgoUnsafeArgs indicates the function (or its callee) uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top