Lines Matching defs:bytes
95 void AllocateStackSpace(int bytes);
97 void AllocateStackSpace(Register bytes) { sub(esp, bytes); }
98 void AllocateStackSpace(int bytes) {
99 DCHECK_GE(bytes, 0);
100 if (bytes == 0) return;
101 sub(esp, Immediate(bytes));
373 // Calculate how much stack space (in bytes) are required to store caller
385 // Push caller saved registers on the stack, and return the number of bytes
391 // bytes stack pointer is adjusted.