Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for Hencke (0.22 sec)

  1. src/cmd/internal/obj/link.go

    type ABI uint8
    
    const (
    	// ABI0 is the stable stack-based ABI. It's important that the
    	// value of this is "0": we can't distinguish between
    	// references to data and ABI0 text symbols in assembly code,
    	// and hence this doesn't distinguish between symbols without
    	// an ABI and text symbols with ABI0.
    	ABI0 ABI = iota
    
    	// ABIInternal is the internal ABI that may change between Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    	return nil
    }
    
    // Emit DWARF attributes and child DIEs for a subprogram. Here
    // 'default' implies that the function in question was not inlined
    // when its containing package was compiled (hence there is no need to
    // emit an abstract version for it to use as a base for inlined
    // routine records).
    func PutDefaultFunc(ctxt Context, s *FnState, isWrapper bool) error {
    	if logDwarf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return callExpression
        }
    
        /**
         * For `=` and compound access like `+=`, `-=`, `*=`, `/=`, `%=`, the LHS of the binary expression is not a complete call. Hence we
         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    func (lv *liveness) hasStackMap(v *ssa.Value) bool {
    	if !v.Op.IsCall() {
    		return false
    	}
    	// wbZero and wbCopy are write barriers and
    	// deeply non-preemptible. They are unsafe points and
    	// hence should not have liveness maps.
    	if sym, ok := v.Aux.(*ssa.AuxCall); ok && (sym.Fn == ir.Syms.WBZero || sym.Fn == ir.Syms.WBMove) {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    	}
    	if w.Op == OpSliceCap && r&lt == 0 && ft.lens[w.Args[0].ID] != nil {
    		// same, capacity on the RHS.
    		ft.update(parent, v, ft.lens[w.Args[0].ID], d, r|gt)
    	}
    
    	// Process fence-post implications.
    	//
    	// First, make the condition > or >=.
    	if r == lt || r == lt|eq {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	switch r {
    	case gt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns a {@code PeekingIterator} backed by the given iterator.
       *
       * <p>Calls to the {@code peek} method with no intervening calls to {@code next} do not affect the
       * iteration, and hence return the same object each time. A subsequent call to {@code next} is
       * guaranteed to return the same object again. For example:
       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns a {@code PeekingIterator} backed by the given iterator.
       *
       * <p>Calls to the {@code peek} method with no intervening calls to {@code next} do not affect the
       * iteration, and hence return the same object each time. A subsequent call to {@code next} is
       * guaranteed to return the same object again. For example:
       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    				}
    				t.checkExpectedOutput(out)
    			}
    		}
    		return nil
    
    	case "runindir":
    		// Make a shallow copy of t.goDirName() in its own module and GOPATH, and
    		// run "go run ." in it. The module path (and hence import path prefix) of
    		// the copy is equal to the basename of the source directory.
    		//
    		// It's used when test a requires a full 'go build' in order to compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. doc/asm.html

    	r   int
    }
    </pre>
    
    <p>
    Assembly can refer to the size of this struct
    as <code>reader__size</code> and the offsets of the two fields
    as <code>reader_buf</code> and <code>reader_r</code>.
    Hence, if register <code>R1</code> contains a pointer to
    a <code>reader</code>, assembly can reference the <code>r</code> field
    as <code>reader_r(R1)</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    				fmt.Fprintf(fgcc, "\treturn r;\n")
    			}
    		}
    		fmt.Fprintf(fgcc, "}\n")
    
    		// In internal linking mode, the Go linker sees both
    		// the C wrapper written above and the Go wrapper it
    		// references. Hence, export the C wrapper (e.g., for
    		// if we're building a shared object). The Go linker
    		// will resolve the C wrapper's reference to the Go
    		// wrapper without a separate export.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top