Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Xlogue (1.59 sec)

  1. src/cmd/internal/src/pos.go

    }
    
    // withXlogue attaches a prologue/epilogue attribute to a lico
    func (x lico) withXlogue(xlogue PosXlogue) lico {
    	if x == 0 {
    		if xlogue == 0 {
    			return x
    		}
    		// Normalize 0 to "not a statement"
    		x = lico(PosNotStmt << isStmtShift)
    	}
    	return lico(uint(x) & ^uint(xlogueMax<<xlogueShift) | (uint(xlogue) << xlogueShift))
    }
    
    // withStmt returns a lico for the same location with specified is_stmt attribute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    	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
    	}
    
    	// It must be followed by a MOVQ SP, BP.
    	movbp := pushbp.Link
    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. src/cmd/internal/src/pos_test.go

    		{makeLico(lineMax, 1).withXlogue(PosEpilogueBegin), fmt.Sprintf(":%d", lineMax) + defs + epi, lineMax, 1},
    	} {
    		x := test.x
    		if got := formatstr("", x.Line(), x.Col(), true) + fmt.Sprintf(":%d:%d", x.IsStmt(), x.Xlogue()); got != test.string {
    			t.Errorf("%d: %s: got %q", i, test.string, got)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/dwarf.go

    	fileIndex := 1
    	prologue, wrotePrologue := false, false
    	// Walk the progs, generating the DWARF table.
    	for p := s.Func().Text; p != nil; p = p.Link {
    		prologue = prologue || (p.Pos.Xlogue() == src.PosPrologueEnd)
    		// If we're not at a real instruction, keep looping!
    		if p.Pos.Line() == 0 || (p.Link != nil && p.Link.Pc == p.Pc) {
    			continue
    		}
    		newStmt := p.Pos.IsStmt() != src.PosNotStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. src/math/exp_amd64.s

    // You can use the software without any obligation."
    //
    // This code is a simplified version of the original.
    
    #define LN2 0.6931471805599453094172321214581766 // log_e(2)
    #define LOG2E 1.4426950408889634073599246810018920 // 1/LN2
    #define LN2U 0.69314718055966295651160180568695068359375 // upper half LN2
    #define LN2L 0.28235290563031577122588448175013436025525412068e-12 // lower half LN2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. src/math/exp_arm64.s

    	FCMPD	F2, F3
    	BLT	nearzero	// fabs(x) < NearZero, return 1 + x
    	// argument reduction, x = k*ln2 + r,  |r| <= 0.5*ln2
    	// computed as r = hi - lo for extra precision.
    	FMOVD	$Log2e, F2
    	FMOVD	$0.5, F3
    	FNMSUBD	F0, F3, F2, F4	// Log2e*x - 0.5
    	FMADDD	F0, F3, F2, F3	// Log2e*x + 0.5
    	FCMPD	$0.0, F0
    	FCSELD	LT, F4, F3, F3	// F3 = k
    	FCVTZSD	F3, R1		// R1 = int(k)
    	SCVTFD	R1, F3		// F3 = float64(int(k))
    	FMOVD	$Ln2Hi, F4	// F4 = Ln2Hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. src/math/exp.go

    		return 0
    	case -NearZero < x && x < NearZero:
    		return 1 + x
    	}
    
    	// reduce; computed as r = hi - lo for extra precision.
    	var k int
    	switch {
    	case x < 0:
    		k = int(Log2e*x - 0.5)
    	case x > 0:
    		k = int(Log2e*x + 0.5)
    	}
    	hi := x - float64(k)*Ln2Hi
    	lo := float64(k) * Ln2Lo
    
    	// compute
    	return expmulti(hi, lo, k)
    }
    
    // Exp2 returns 2**x, the base-2 exponential of x.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

            .certificatePinner(certificatePinner)
            .build()
    
        // Add a bad intermediate CA and have that issue a rogue certificate for localhost. Prepare
        // an SSL context for an attacking webserver. It includes both these rogue certificates plus the
        // trusted good certificate above. The attack is that by including the good certificate in the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    avez saisi une mauvaise réponse à la question de sécurité",badDate:"Vous n'avez pas saisi une date correcte",lengthBadStart:"Votre saisie doit comporter entre ",lengthBadEnd:" caractères",lengthTooLongStart:"Vous avez saisi une réponse qui est plus longue que ",lengthTooShortStart:"Votre saisie est plus courte que ",notConfirmed:"Les saisies ne sont pas identiques",badDomain:"Vous avez saisi un domaine incorrect",badUrl:"Vous avez saisi une URL incorrecte",badCustomVal:"Re-saisissez une réponse co...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_chatty_success.txt

    go test chatty_test.go -v
    
    # Non-parallel tests should not print CONT.
    ! stdout CONT
    
    # The assertion is condensed into one line so that it precisely matches output,
    # rather than skipping lines and allow rogue CONT lines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 937 bytes
    - Viewed (0)
Back to top