Lines Matching refs:space
1126 int32_t space = test.GetPoolCheckpoint() - masm.GetCursorOffset();
1128 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
1129 while (space > 0) {
1131 space -= k16BitT32InstructionSizeInBytes;
1384 int32_t space = test.GetPoolCheckpoint() - masm.GetCursorOffset();
1386 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
1387 while (space > 0) {
1389 space -= k16BitT32InstructionSizeInBytes;
1764 int space = AlignDown(ldr_padding, kA32InstructionSizeInBytes);
1765 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
1766 int32_t end = masm.GetCursorOffset() + space;
1776 int space = AlignDown(ldrd_padding, kA32InstructionSizeInBytes);
1777 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
1778 for (int32_t end = masm.GetCursorOffset() + space;
1930 // TODO: The MacroAssembler currently checks for more space than required
1946 int space = test.GetPoolCheckpoint() - masm.GetCursorOffset();
1947 int end = masm.GetCursorOffset() + space;
1950 ExactAssemblyScope accurate_scope(&masm, space); // This should not
2279 int space = AlignDown(padding_before, nop_size);
2280 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
2281 for (int32_t end = masm.GetCursorOffset() + space;
2292 int space = AlignDown(padding_after, nop_size);
2293 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
2294 for (int32_t end = masm.GetCursorOffset() + space;
3954 uint32_t space = static_cast<uint32_t>(masm.GetBuffer()->GetRemainingBytes());
3957 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
3958 for (uint32_t i = 0; i < space; i += k16BitT32InstructionSizeInBytes) {
3965 // The buffer should not have grown yet, and there should be no space left.
3969 // Force emission of the veneer, at a point where there is no space available
3991 int32_t space = static_cast<int32_t>(masm.GetBuffer()->GetRemainingBytes());
3992 int32_t end = __ GetCursorOffset() + space;
3995 ExactAssemblyScope scope(&masm, space, ExactAssemblyScope::kExactSize);
4022 int space = 5000;
4024 ExactAssemblyScope scope(&masm, space, CodeBufferCheckScope::kExactSize);
4026 for (int i = 0; i < space; i += k16BitT32InstructionSizeInBytes) {
4095 int space = 5002;
4097 ExactAssemblyScope scope(&masm, space, CodeBufferCheckScope::kExactSize);
4099 for (int i = 0; i < space; i += k16BitT32InstructionSizeInBytes) {
4188 int space = 4000;
4190 ExactAssemblyScope scope(&masm, space, CodeBufferCheckScope::kExactSize);
4192 for (int i = 0; i < space; i += k16BitT32InstructionSizeInBytes) {
4261 int space = 4000;
4263 ExactAssemblyScope scope(&masm, space, CodeBufferCheckScope::kExactSize);
4265 for (int i = 0; i < space; i += k16BitT32InstructionSizeInBytes) {
4331 #define PAD_WITH_NOPS(space) \
4335 space, \
4338 for (int i = 0; i < space; i += k16BitT32InstructionSizeInBytes) { \
6245 int32_t space = end - masm->GetCursorOffset() - margin;
6247 ExactAssemblyScope scope(masm, space, ExactAssemblyScope::kExactSize);
6248 while (space > 0) {
6250 space -= kAddSize;