Lines Matching defs:bytes
483 void AllocateStackSpace(int bytes);
485 void AllocateStackSpace(Register bytes) { subq(rsp, bytes); }
486 void AllocateStackSpace(int bytes) {
487 DCHECK_GE(bytes, 0);
488 if (bytes == 0) return;
489 subq(rsp, Immediate(bytes));
528 // Calculate how much stack space (in bytes) are required to store caller
540 // Push caller saved registers on the stack, and return the number of bytes
546 // bytes stack pointer is adjusted.