Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 458 for eidx (0.54 sec)

  1. src/cmd/link/internal/arm/asm.go

    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		su.SetRelocSym(rIdx, syms.GOT)
    		su.SetRelocAdd(rIdx, r.Add()+4)
    		return true
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_ARM_CALL):
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_CALLARM)
    		if targType == sym.SDYNIMPORT {
    			addpltsym(target, ldr, syms, targ)
    			su.SetRelocSym(rIdx, syms.PLT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64splitload.rules

    (CMP(Q|L|W|B)loadidx1 {sym} [off] ptr idx x mem) => (CMP(Q|L|W|B) (MOV(Q|L|W|B)loadidx1 {sym} [off] ptr idx mem) x)
    (CMPQloadidx8 {sym} [off] ptr idx x mem) => (CMPQ (MOVQloadidx8 {sym} [off] ptr idx mem) x)
    (CMPLloadidx4 {sym} [off] ptr idx x mem) => (CMPL (MOVLloadidx4 {sym} [off] ptr idx mem) x)
    (CMPWloadidx2 {sym} [off] ptr idx x mem) => (CMPW (MOVWloadidx2 {sym} [off] ptr idx mem) x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. src/time/tzdata/tzdata.go

    	z := zipdata
    
    	idx := len(z) - ztailsize
    	n := get2s(z[idx+10:])
    	idx = get4s(z[idx+16:])
    
    	for i := 0; i < n; i++ {
    		// See time.loadTzinfoFromZip for zip entry layout.
    		if get4s(z[idx:]) != zcheader {
    			break
    		}
    		meth := get2s(z[idx+10:])
    		size := get4s(z[idx+24:])
    		namelen := get2s(z[idx+28:])
    		xlen := get2s(z[idx+30:])
    		fclen := get2s(z[idx+32:])
    		off := get4s(z[idx+42:])
    		zname := z[idx+46
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    	{idx: 1, exp: gt, fn: gt_1_uint64},
    	{idx: 1, exp: ge, fn: ge_1_uint64},
    	{idx: 1, exp: eq, fn: eq_1_uint64},
    	{idx: 1, exp: ne, fn: ne_1_uint64},
    	{idx: 2, exp: lt, fn: lt_126_uint64},
    	{idx: 2, exp: le, fn: le_126_uint64},
    	{idx: 2, exp: gt, fn: gt_126_uint64},
    	{idx: 2, exp: ge, fn: ge_126_uint64},
    	{idx: 2, exp: eq, fn: eq_126_uint64},
    	{idx: 2, exp: ne, fn: ne_126_uint64},
    	{idx: 3, exp: lt, fn: lt_127_uint64},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/node_matchers.cc

        const ::tensorflow::Input::Initializer& val) {
      return Out(NodeWith(ConstantValue(val)));
    }
    ::testing::Matcher<impl::OutEdge> Out(
        int oidx, ::testing::Matcher<const Node*> node_matcher) {
      return ::testing::MakeMatcher(new OutEdgeMatcher(node_matcher, oidx));
    }
    }  // namespace matchers
    
    Node* FindNodeByName(Graph* g, absl::string_view name) {
      for (Node* n : g->nodes()) {
        if (n->name() == name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/dwtest/dwtest.go

    func (ex *Examiner) entryFromIdx(idx int) *dwarf.Entry {
    	if idx >= len(ex.dies) || idx < 0 {
    		return nil
    	}
    	return ex.dies[idx]
    }
    
    // Returns a list of child entries for a die with ID 'idx'
    func (ex *Examiner) Children(idx int) []*dwarf.Entry {
    	sl := ex.kids[idx]
    	ret := make([]*dwarf.Entry, len(sl))
    	for i, k := range sl {
    		ret[i] = ex.entryFromIdx(k)
    	}
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            threads.times { idx ->
                buildTestFixture.withBuildInSubDir()
                singleProjectBuild("build$idx") {
                    buildFile << """
    System.out.println 'this is stdout: $idx'
    System.err.println 'this is stderr: $idx'
    logger.lifecycle 'this is lifecycle: $idx'
    """
                }
            }
    
            then:
            threads.times { idx ->
                concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. migrator/index.go

    // Table return the table name of the index.
    func (idx Index) Table() string {
    	return idx.TableName
    }
    
    // Name return the name of the index.
    func (idx Index) Name() string {
    	return idx.NameValue
    }
    
    // Columns return the columns of the index
    func (idx Index) Columns() []string {
    	return idx.ColumnList
    }
    
    // PrimaryKey returns the index is primary key or not.
    func (idx Index) PrimaryKey() (isPrimaryKey bool, ok bool) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:32:46 UTC 2023
    - 1023 bytes
    - Viewed (0)
  9. schema/index.go

    			for _, index := range fieldIndexes {
    				idx := indexes[index.Name]
    				idx.Name = index.Name
    				if idx.Class == "" {
    					idx.Class = index.Class
    				}
    				if idx.Type == "" {
    					idx.Type = index.Type
    				}
    				if idx.Where == "" {
    					idx.Where = index.Where
    				}
    				if idx.Comment == "" {
    					idx.Comment = index.Comment
    				}
    				if idx.Option == "" {
    					idx.Option = index.Option
    				}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

            builder.put(domain, PublicSuffixType.fromCode(c));
          }
        }
    
        idx++;
    
        if (c != '?' && c != ',') {
          while (idx < encodedLen) {
            // Read all the children
            idx += doParseTrieToBuilder(stack, encoded, idx, builder);
    
            if (encoded.charAt(idx) == '?' || encoded.charAt(idx) == ',') {
              // An extra '?' or ',' after a child node indicates the end of all children of this node.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top