Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for fixup (0.1 sec)

  1. test/codegen/arithmetic.go

    	// amd64:`INCL`
    	a++
    	// amd64:`DECL`
    	b--
    	// amd64:`SUBL.*-128`
    	c += 128
    	return a, b, c
    }
    
    // Divide -> shift rules usually require fixup for negative inputs.
    // If the input is non-negative, make sure the fixup is eliminated.
    func divInt(v int64) int64 {
    	if v < 0 {
    		return 0
    	}
    	// amd64:-`.*SARQ.*63,`, -".*SHRQ", ".*SARQ.*[$]9,"
    	return v / 512
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/encoding/json/stream.go

    	dec.scanp += n
    
    	// Don't save err from unmarshal into dec.err:
    	// the connection is still usable since we read a complete JSON
    	// object from it before the error happened.
    	err = dec.d.unmarshal(v)
    
    	// fixup token streaming state
    	dec.tokenValueEnd()
    
    	return err
    }
    
    // Buffered returns a reader of the data remaining in the Decoder's
    // buffer. The reader is valid until the next call to [Decoder.Decode].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    					Allowed:   true,
    					PatchType: &invalidv1Patch,
    				},
    			},
    			expectErr: `validating webhook may not return response.patchType`,
    		},
    
    		// v1beta1 invalid responses that we have to allow/fixup for compatibility
    		{
    			name: "v1beta1 wrong group/version/kind",
    			uid:  "123",
    			review: &admissionv1beta1.AdmissionReview{
    				TypeMeta: metav1.TypeMeta{APIVersion: "admission.k8s.io2/v2", Kind: "AdmissionReview2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/parse.go

    	corner bool // noticed corner case to ignore in cross-implementation testing
    
    	// inlines
    	s       string
    	emitted int // s[:emitted] has been emitted into list
    	list    []Inline
    
    	// for fixup at end
    	lists []*List
    	texts []*Text
    
    	backticks backtickParser
    }
    
    func (p *parseState) newText(pos Position, text string) *Text {
    	b := &Text{Position: pos, raw: text}
    	p.texts = append(p.texts, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_arm.s

    	MOVW	R6, 12(R1)
    
    	MOVW	$SYS_clone, R7
    	SWI	$0
    
    	// In parent, return.
    	CMP	$0, R0
    	BEQ	3(PC)
    	MOVW	R0, ret+20(FP)
    	RET
    
    	// Paranoia: check that SP is as we expect. Use R13 to avoid linker 'fixup'
    	NOP	R13	// tell vet SP/R13 changed - stop checking offsets
    	MOVW	12(R13), R0
    	MOVW	$1234, R1
    	CMP	R0, R1
    	BEQ	2(PC)
    	BL	runtime·abort(SB)
    
    	MOVW	0(R13), R8    // m
    	MOVW	4(R13), R0    // g
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    // symbols that are defs (as opposed to external refs).
    //
    // The main actions taken below are to search for references to
    // SDYNIMPORT symbols in host object text/data sections and flag the
    // symbols for later fixup. When we see a reference to an import
    // symbol __imp_XYZ where XYZ corresponds to some SDYNIMPORT symbol,
    // we flag the symbol (via GOT setting) so that it can be redirected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    		}
    		ctxt.Arch.ByteOrder.PutUint32(p[r.Off()+4:], OP_TOCRESTORE)
    	}
    
    	return stub.Sym(), firstUse
    }
    
    // Scan relocs and generate PLT stubs and generate/fixup ABI defined functions created by the linker.
    func genstubs(ctxt *ld.Link, ldr *loader.Loader) {
    	var stubs []loader.Sym
    	var abifuncs []loader.Sym
    	for _, s := range ctxt.Textp {
    		relocs := ldr.Relocs(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    				//   BC 4,...
    				// into
    				//   BC $4,...
    				prog.From = obj.Addr{
    					Type:   obj.TYPE_CONST,
    					Offset: p.getConstant(prog, op, &a[0]),
    				}
    
    			}
    
    			// Likewise, fixup usage like:
    			//   BC x,LT,...
    			//   BC x,foo+2,...
    			//   BC x,4
    			//   BC x,$5
    			// into
    			//   BC x,CR0LT,...
    			//   BC x,CR0EQ,...
    			//   BC x,CR1LT,...
    			//   BC x,CR1GT,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    //
    // It also requires that there are no critical edges (critical =
    // comes from a block with >1 successor and goes to a block with >1
    // predecessor).  This makes it easy to add fixup code on merge edges -
    // the source of a merge edge has only one successor, so we can add
    // fixup code to the end of that block.
    
    // Spilling
    //
    // During the normal course of the allocator, we might throw a still-live
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/html/template/escape.go

    		// Error out because HTML parsers may differ on whether
    		// "<a id= onclick=f("     ends inside id's or onclick's value,
    		// "<a class=`foo "        ends inside a value,
    		// "<a style=font:'Arial'" needs open-quote fixup.
    		// IE treats '`' as a quotation character.
    		if j := bytes.IndexAny(s[:i], "\"'<=`"); j >= 0 {
    			return context{
    				state: stateError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top