HomeSort by relevance Sort by last modified time
    Searched refs:argSize (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/
MutableStack.java 41 private void extendStack(int argSize) {
42 E[] newStack = newArray(argSize);
DefaultWorldPool.java 119 public DefaultWorldPool(int argSize, int argContainerSize) {
120 vecs = new OrderedStack<Vec2>(argSize, argContainerSize) {
123 vec3s = new OrderedStack<Vec3>(argSize, argContainerSize) {
126 mats = new OrderedStack<Mat22>(argSize, argContainerSize) {
129 aabbs = new OrderedStack<AABB>(argSize, argContainerSize) {
132 rots = new OrderedStack<Rot>(argSize, argContainerSize) {
135 mat33s = new OrderedStack<Mat33>(argSize, argContainerSize) {
  /prebuilts/go/darwin-x86/src/reflect/
export_test.go 24 func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack []byte, gc []byte, ptrs bool) {
28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
30 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), nil)
type.go     [all...]
  /prebuilts/go/linux-x86/src/reflect/
export_test.go 24 func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack []byte, gc []byte, ptrs bool) {
28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
30 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), nil)
type.go     [all...]
  /external/icu/icu4c/source/io/
uprntf_p.c 202 int32_t argSize;
207 argSize = (int32_t)strlen(arg) + 1;
208 if (argSize >= MAX_UCHAR_BUFFER_SIZE(buffer)) {
209 s = ufmt_defaultCPToUnicode(arg, argSize,
210 (UChar *)uprv_malloc(MAX_UCHAR_BUFFER_NEEDED(argSize)),
211 MAX_UCHAR_BUFFER_NEEDED(argSize));
217 s = ufmt_defaultCPToUnicode(arg, argSize, buffer,
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodWriter.java 809 int argSize = i.intVal;
823 if (argSize == 0) {
826 argSize = getArgumentsAndReturnSizes(desc);
829 i.intVal = argSize;
833 size = stackSize - (argSize >> 2) + (argSize & 0x03) + 1;
835 size = stackSize - (argSize >> 2) + (argSize & 0x03);
846 if (argSize == 0) {
847 argSize = getArgumentsAndReturnSizes(desc);
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/asm/internal/asm/
asm.go 119 // Bizarre syntax: $frameSize-argSize is two words, not subtraction.
120 // Both frameSize and argSize must be simple integers; only frameSize
122 // The "-argSize" may be missing; if so, set it to obj.ArgsSizeUnknown.
144 argSize := int64(obj.ArgsSizeUnknown)
150 argSize = p.positiveAtoi(op[1].String())
164 // Argsize set below.
167 prog.To.Val = int32(argSize)
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
asm.go 116 // Bizarre syntax: $frameSize-argSize is two words, not subtraction.
117 // Both frameSize and argSize must be simple integers; only frameSize
119 // The "-argSize" may be missing; if so, set it to obj.ArgsSizeUnknown.
141 argSize := int64(obj.ArgsSizeUnknown)
147 argSize = p.positiveAtoi(op[1].String())
161 // Argsize set below.
164 prog.To.Val = int32(argSize)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/asm/internal/asm/
asm.go 119 // Bizarre syntax: $frameSize-argSize is two words, not subtraction.
120 // Both frameSize and argSize must be simple integers; only frameSize
122 // The "-argSize" may be missing; if so, set it to obj.ArgsSizeUnknown.
144 argSize := int64(obj.ArgsSizeUnknown)
150 argSize = p.positiveAtoi(op[1].String())
164 // Argsize set below.
167 prog.To.Val = int32(argSize)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
asm.go 116 // Bizarre syntax: $frameSize-argSize is two words, not subtraction.
117 // Both frameSize and argSize must be simple integers; only frameSize
119 // The "-argSize" may be missing; if so, set it to obj.ArgsSizeUnknown.
141 argSize := int64(obj.ArgsSizeUnknown)
147 argSize = p.positiveAtoi(op[1].String())
161 // Argsize set below.
164 prog.To.Val = int32(argSize)
  /prebuilts/go/darwin-x86/src/cmd/vet/
asmdecl.go 137 localSize, argSize int
195 argSize, _ = strconv.Atoi(m[4])
247 if off >= localSize+argSize {
  /prebuilts/go/linux-x86/src/cmd/vet/
asmdecl.go 137 localSize, argSize int
195 argSize, _ = strconv.Atoi(m[4])
247 if off >= localSize+argSize {
  /external/v8/test/mjsunit/asm/embenchen/
copy.js     [all...]
corrections.js     [all...]
primes.js     [all...]
fannkuch.js     [all...]
fasta.js     [all...]
memops.js     [all...]
zlib.js     [all...]
lua_binarytrees.js     [all...]
box2d.js     [all...]
  /external/v8/test/mjsunit/asm/poppler/
poppler.js     [all...]
  /external/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]

Completed in 1170 milliseconds

1 2 3