Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Gerring (2.23 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word zeroing
    (Zero [s] ptr mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Zero [8]
    		(OffPtr <ptr.Type> ptr [s-8])
    		(Zero [s-s%16] ptr mem))
    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Zero [16]
    		(OffPtr <ptr.Type> ptr [s-16])
    		(Zero [s-s%16] ptr mem))
    
    // medium zeroing uses a duff device
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I think you'd take a fancy to cats if you could only see her.
    She is such a dear quiet thing,' Alice went on, half to herself,
    as she swam lazily about in the pool, `and she sits purring so
    nicely by the fire, licking her paws and washing her face--and
    she is such a nice soft thing to nurse--and she's such a capital
    one for catching mice--oh, I beg your pardon!' cried Alice again,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I think you'd take a fancy to cats if you could only see her.
    She is such a dear quiet thing,' Alice went on, half to herself,
    as she swam lazily about in the pool, `and she sits purring so
    nicely by the fire, licking her paws and washing her face--and
    she is such a nice soft thing to nurse--and she's such a capital
    one for catching mice--oh, I beg your pardon!' cried Alice again,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (SelectN [0] call:(StaticLECall _ _)) x mem:(SelectN [1] call))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top