Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for stmp_ (0.08 sec)

  1. test/codegen/slices.go

    // ---------------------- //
    // See issue 21561
    func InitSmallSliceLiteral() []int {
    	// amd64:`MOVQ\t[$]42`
    	return []int{42}
    }
    
    func InitNotSmallSliceLiteral() []int {
    	// amd64:`LEAQ\t.*stmp_`
    	return []int{
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    		42,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    // variables. When turned into LSyms, these can be tagged as static so
    // as to avoid inserting them into the linker's name lookup tables.
    const StaticNamePref = ".stmp_"
    
    type traverseFlag uint32
    
    const (
    	traverseDefs traverseFlag = 1 << iota
    	traverseRefs
    	traverseAux
    	traversePcdata
    
    	traverseAll = traverseDefs | traverseRefs | traverseAux | traversePcdata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    //
    //     X = &map{...}
    //
    // which compiles to
    //
    //     X = &stmp           // static
    //     stmp = makemap(...) // in init function
    //
    // plugin1 and plugin2 both import base. plugin1 doesn't use
    // base.X, so that symbol is deadcoded in plugin1.
    //
    // plugin1 is loaded first. base.init runs at that point, which
    // initialize base.stmp.
    //
    // plugin2 is then loaded. base.init already ran, so it doesn't run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
        return new Iterator(this, end_, end_index_, step_);
      }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
        return new Iterator(this, end_, end_index_, step_);
      }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/xattr_bsd.go

    	destsiz := len(dest)
    
    	s, pos := 0, 0
    	for _, nsid := range [...]int{EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM} {
    		stmp, e := FlistxattrNS(fd, nsid, dest[pos:])
    
    		if e != nil {
    			if e == EPERM && nsid != EXTATTR_NAMESPACE_USER {
    				continue
    			}
    			return s, e
    		}
    
    		s += stmp
    		pos = s
    		if pos > destsiz {
    			pos = destsiz
    		}
    	}
    
    	return s, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubeletconfig/util/files/files.go

    limitations under the License.
    */
    
    package files
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	defaultPerm = 0755
    	tmpTag      = "tmp_" // additional prefix to prevent accidental collisions
    )
    
    // FileExists returns true if a regular file exists at `path`, false if `path` does not exist, otherwise an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf_test.go

    	// variables (issue #25113)
    
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	const prog = `package main
    
    var stmp_0 string
    var a []int
    
    func init() {
    	a = []int{ 7 }
    }
    
    func main() {
    	println(a[0])
    }
    `
    
    	f := gobuild(t, dir, prog, NoOpt)
    
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                                  node)
            elif step_ty != TFRTypes.INDEX:
              step_ = self._ssa_name('step')
              self._emit_with_loc(
                  '\n{} = arith.index_cast {} : {} to index'.format(
                      step_, step, step_ty), node)
              step = step_
    
            return begin, end, step
    
        raise NotImplementedError('Iterator entity not supported.' + node)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/obj0.go

    			}
    			goto out2
    		}
    
    		if s[0].p.Mark&BRANCH != 0 {
    			s[0].nop = 1
    		}
    		continue
    
    	out2:
    		// t[0] is the instruction being moved to fill the delay
    		stmp := t[0]
    		copy(t[:i-j], t[1:i-j+1])
    		s[0] = stmp
    
    		if t[i-j-1].p.Mark&BRANCH != 0 {
    			// t[i-j] is being put into a branch delay slot
    			// combine its Spadj with the branch instruction
    			t[i-j-1].p.Spadj += t[i-j].p.Spadj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top