summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/slice.c
AgeCommit message (Collapse)AuthorFilesLines
2009-11-20x[lo:] - gc and runtime.Russ Cox1-30/+44
* add runtime sliceslice1 for x[lo:] * remove runtime arraytoslice, rewriting &arr into arr[0:len(arr)]. * port cgen_inline into 8g, 5g. * use native memmove in maps R=ken2 http://codereview.appspot.com/157106
2009-11-17bug in copyKen Thompson1-1/+1
R=rsc http://codereview.appspot.com/156056
2009-11-17install copy predefinedKen Thompson1-0/+33
did not test 386, but should work shouldnt matter if copy is not used R=rsc http://codereview.appspot.com/156055
2009-10-20bug162, over and overRuss Cox1-0/+14
R=ken OCL=35919 CL=35919
2009-10-15rename sys functions to runtime,Russ Cox1-44/+44
because they are in package runtime. another step to enforcing package boundaries. R=r DELTA=732 (114 added, 93 deleted, 525 changed) OCL=35811 CL=35824
2009-08-25rename runtime internals to have modern names (array->slice etc)Rob Pike1-0/+175
R=rsc DELTA=444 (179 added, 177 deleted, 88 changed) OCL=33847 CL=33849