Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for constNil (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    typedef int IsContainer;
    template <class C>
    IsContainer IsContainerTest(int /* dummy */,
                                typename C::iterator* /* it */ = NULL,
                                typename C::const_iterator* /* const_it */ = NULL) {
      return 0;
    }
    
    typedef char IsNotContainer;
    template <class C>
    IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; }
    
    // EnableIf<condition>::type is void when 'Cond' is true, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(t))
    		return true
    	}
    }
    func rewriteValueARM64_OpConstNil(v *Value) bool {
    	// match: (ConstNil)
    	// result: (MOVDconst [0])
    	for {
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    }
    func rewriteValueARM64_OpCtz16(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    typedef int IsContainer;
    template <class C>
    IsContainer IsContainerTest(int /* dummy */,
                                typename C::iterator* /* it */ = NULL,
                                typename C::const_iterator* /* const_it */ = NULL) {
      return 0;
    }
    
    typedef char IsNotContainer;
    template <class C>
    IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; }
    
    // EnableIf<condition>::type is void when 'Cond' is true, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    func genResult0(rr *RuleRewrite, arch arch, result string, top, move bool, pos string, cse map[string]string) string {
    	resname, expr := splitNameExpr(result)
    	result = expr
    	// TODO: when generating a constant result, use f.constVal to avoid
    	// introducing copies just to clean them up again.
    	if result[0] != '(' {
    		// variable
    		if top {
    			// It in not safe in general to move a variable between blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	for {
    		c := auxIntToBool(v.AuxInt)
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(b2i32(c))
    		return true
    	}
    }
    func rewriteValueAMD64_OpConstNil(v *Value) bool {
    	// match: (ConstNil )
    	// result: (MOVQconst [0])
    	for {
    		v.reset(OpAMD64MOVQconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    }
    func rewriteValueAMD64_OpCtz16(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		auxType: auxBool,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstString",
    		auxType: auxString,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstNil",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "Const8",
    		auxType: auxInt8,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "Const16",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top