Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for addTab (0.28 sec)

  1. src/cmd/asm/internal/lex/lex_test.go

    	},
    	{
    		"LOAD macro",
    		lines(
    			"#define LOAD(off, reg) \\",
    			"\tMOVBLZX	(off*4)(R12),	reg \\",
    			"\tADDB	reg,		DX",
    			"",
    			"LOAD(8, AX)",
    		),
    		"\n.\n.MOVBLZX.(.8.*.4.).(.R12.).,.AX.\n.ADDB.AX.,.DX.\n",
    	},
    	{
    		"nested multiline macro",
    		lines(
    			"#define KEYROUND(xmm, load, off, r1, r2, index) \\",
    			"\tMOVBLZX	(BP)(DX*4),	R8 \\",
    			"\tload((off+1), r2) \\",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/link.go

    	fmt.Fprintf(ctxt.Bso, format, args...)
    	ctxt.Bso.Flush()
    }
    
    func addImports(ctxt *Link, l *sym.Library, pn string) {
    	pkg := objabi.PathToPrefix(l.Pkg)
    	for _, imp := range l.Autolib {
    		lib := addlib(ctxt, pkg, pn, imp.Pkg, imp.Fingerprint)
    		if lib != nil {
    			l.Imports = append(l.Imports, lib)
    		}
    	}
    	l.Autolib = nil
    }
    
    // Allocate a new version (i.e. symbol namespace).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. src/runtime/cgocheck.go

    	skipMask := off / goarch.PtrSize / 8
    	skipBytes := skipMask * goarch.PtrSize * 8
    	ptrmask := addb(gcbits, skipMask)
    	src = add(src, skipBytes)
    	off -= skipBytes
    	size += off
    	var bits uint32
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		if i&(goarch.PtrSize*8-1) == 0 {
    			bits = uint32(*ptrmask)
    			ptrmask = addb(ptrmask, 1)
    		} else {
    			bits >>= 1
    		}
    		if off > 0 {
    			off -= goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

        }
    
        public void setSize(final int size) {
            this.size = size;
        }
    
        public void setQuery(final String query) {
            this.query = query;
        }
    
        public void addTag(final String tag) {
            this.tags.add(tag);
        }
    
        public void addRole(final String role) {
            this.roles.add(role);
        }
    
        public void addField(final String field) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    				if colonPos == -1 {
    					panic(fmt.Sprintf("Line %d (%s) in file %s expected to contain '<number>:' but does not.\n", i+1, l, filename))
    				}
    				h.add(lastfile, l[0:colonPos], l[colonPos+1:])
    			} else {
    				h.addVar(l)
    			}
    		}
    	}
    }
    
    // add appends file (name), line (number) and text (string) to the history,
    // provided that the file+line combo does not repeat the previous position,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    		if qhatv.cmp(uu.norm()) > 0 {
    			panic("impossible")
    		}
    		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
    		if c > 0 {
    			subVW(uu[len(qhatv):], uu[len(qhatv):], c)
    		}
    		addAt(z, qhat, j-B)
    		j -= B
    	}
    
    	// TODO(rsc): Rewrite loop as described above and delete all this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/cronjob_controllerv2.go

    		cronJobListerSynced: cronJobsInformer.Informer().HasSynced,
    		now:                 time.Now,
    	}
    
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    jm.addJob,
    		UpdateFunc: jm.updateJob,
    		DeleteFunc: jm.deleteJob,
    	})
    
    	cronJobsInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
                final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
                if (StringUtil.isNotBlank(key)) {
                    builder.addTag(key);
                }
    
                builder.addKind(SuggestItem.Kind.USER.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. src/runtime/stack.go

    			for j := uintptr(0); j < 8; j++ {
    				print("        ", add(scanp, (i+j)*goarch.PtrSize), ":", ptrnames[bv.ptrbit(i+j)], ":", hex(*(*uintptr)(add(scanp, (i+j)*goarch.PtrSize))), " # ", i, " ", *addb(bv.bytedata, i/8), "\n")
    			}
    		}
    		b := *(addb(bv.bytedata, i/8))
    		for b != 0 {
    			j := uintptr(sys.TrailingZeros8(b))
    			b &= b - 1
    			pp := (*uintptr)(add(scanp, (i+j)*goarch.PtrSize))
    		retry:
    			p := *pp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inl_test.go

    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    			"alignDown",
    			"alignUp",
    			"bucketMask",
    			"bucketShift",
    			"chanbuf",
    			"evacuated",
    			"fastlog2",
    			"float64bits",
    			"funcspdelta",
    			"getm",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top