- 10 Dec, 2009 12 commits
-
-
Robert Griesemer authored
R=rsc CC=r https://golang.org/cl/175045
-
Robert Griesemer authored
R=rsc, ken2 https://golang.org/cl/174047
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/173044
-
Robert Griesemer authored
R=rsc, ken2, ken3 https://golang.org/cl/174042
-
Kai Backman authored
registers. R=rsc https://golang.org/cl/166049
-
Kai Backman authored
R=rsc https://golang.org/cl/165044
-
Robert Griesemer authored
R=rsc https://golang.org/cl/173045
-
Robert Griesemer authored
R=rsc, r https://golang.org/cl/172045
-
Robert Griesemer authored
R=rsc, r https://golang.org/cl/171051
-
Robert Griesemer authored
- remove use of implicit string concatenation - these appear to be the only files correctly compiling under test that used implicit string concatenation R=rsc https://golang.org/cl/172043
-
Robert Griesemer authored
R=rsc https://golang.org/cl/172042
-
Robert Griesemer authored
R=rsc https://golang.org/cl/172041
-
- 09 Dec, 2009 18 commits
-
-
Russ Cox authored
R=r https://golang.org/cl/170049
-
Russ Cox authored
R=r https://golang.org/cl/170048
-
Russ Cox authored
R=r https://golang.org/cl/170047
-
Russ Cox authored
and release.2009-12-09 (where we are) shorten tags because it is too hard to look up the full size hash and overkill anyway. R=r https://golang.org/cl/171047
-
Russ Cox authored
R=r https://golang.org/cl/171046
-
Roger Peppe authored
removed superfluous field name in lockedSource. R=r, rsc https://golang.org/cl/170043
-
Rob Pike authored
negative counts in return values. R=rsc CC=golang-dev https://golang.org/cl/170044
-
Russ Cox authored
R=r https://golang.org/cl/170042
-
Roger Peppe authored
R=r, rsc CC=golang-dev https://golang.org/cl/168041
-
Charles L. Dorian authored
UTF-8 string, Yconv() converts it into an octal sequence. If the string converted to more than 30 bytes, the str buffer would overflow. For example, 4 Greek runes became 32 bytes, 3 Hiragana runes became 36 bytes, and 2 Gothic runes became 32 bytes. In 8l, 6l and 5l the function is Sconv(). For some reason, only 5l uses the constant STRINGSZ (defined as 200) for the buffer size. R=rsc https://golang.org/cl/168045
-
Ross Light authored
Fixes #400. R=golang-dev, rsc https://golang.org/cl/167058
-
Ross Light authored
R=rsc https://golang.org/cl/165101
-
Adrian O'Grady authored
This is an adaption of the code from http://en.wikipedia.org/wiki/XTEA. The package also implements the block.Cipher interface so that it can be used with the various block modes. R=rsc https://golang.org/cl/157152
-
Russ Cox authored
then enable stack check. R=r https://golang.org/cl/165100
-
Russ Cox authored
Kei Son has completed the CLA. Yves Junqueira is a Google employee. R=r https://golang.org/cl/167057
-
Russ Cox authored
R=r https://golang.org/cl/167047
-
Devon H. O'Dell authored
FreeBSD was passing stk as the new thread's stack base, while stk is the top of the stack in go. The added check should cause a trap if this ever comes up in any new ports, or regresses in current ones. R=rsc CC=golang-dev https://golang.org/cl/167055
-
Devon H. O'Dell authored
R=rsc CC=golang-dev https://golang.org/cl/165097
-
- 08 Dec, 2009 2 commits
-
-
Russ Cox authored
Fixes #221. R=ken2 https://golang.org/cl/165086
-
Russ Cox authored
R=r https://golang.org/cl/165083
-
- 07 Dec, 2009 7 commits
-
-
Russ Cox authored
cuts working size for hello world from 6 MB to 1.2 MB. still some work to be done, but diminishing returns. R=r https://golang.org/cl/165080
-
Russ Cox authored
to provide functionality previously hacked in to reflect and gob. R=r https://golang.org/cl/165076
-
Robert Griesemer authored
R=r https://golang.org/cl/165078
-
Christopher Wedgwood authored
R=r, rsc https://golang.org/cl/165068
-
Rob Pike authored
the one-item case could be generalized easily with no cost. worth considering. R=rsc CC=golang-dev, cw https://golang.org/cl/167044
-
Roger Peppe authored
nodes in the tree are nested with respect to one another. a simple change to the Visitor interface makes it possible to do this (for example to maintain a current node-depth, or a knowledge of the name of the current function). Visit(nil) is called at the end of a node's children; this make possible the channel-based interface below, amongst other possibilities. It is still just as simple to get the original behaviour - just return the same Visitor from Visit. Here are a couple of possible Visitor types. // closure-based type FVisitor func(n interface{}) FVisitor func (f FVisitor) Visit(n interface{}) Visitor { return f(n); } // channel-based type CVisitor chan Visit; type Visit struct { node interface{}; reply chan CVisitor; }; func (v CVisitor) Visit(n interface{}) Visitor { if n == nil { close(v); } else { reply := make(chan CVisitor); v <- Visit{n, reply}; r := <-reply; if r == nil { return nil; } return r; } return nil; } R=gri CC=rsc https://golang.org/cl/166047
-
Roger Peppe authored
it's now there: http://shootout.alioth.debian.org/u32q/benchmark.php?test=chameneosredux&lang=all&box=1! R=r, rsc CC=golang-dev https://golang.org/cl/167043
-
- 06 Dec, 2009 1 commit
-
-
Rob Pike authored
a couple of cleanups. don't keep big buffers in the free list. R=rsc CC=golang-dev https://golang.org/cl/166078
-