Home
last modified time | relevance | path

Searched refs:code_addr (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr300_fragprog.c74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n]; in r300FragmentProgramDump() local
75 unsigned int alu_offset = ((code_addr & R300_ALU_START_MASK) >> R300_ALU_START_SHIFT) + in r300FragmentProgramDump()
77 unsigned int alu_end = ((code_addr & R300_ALU_SIZE_MASK) >> R300_ALU_SIZE_SHIFT) + in r300FragmentProgramDump()
79 int tex_offset = (code_addr & R300_TEX_START_MASK) >> R300_TEX_START_SHIFT; in r300FragmentProgramDump()
80 int tex_end = (code_addr & R300_TEX_SIZE_MASK) >> R300_TEX_SIZE_SHIFT; in r300FragmentProgramDump()
84 alu_offset, tex_offset, alu_end, tex_end, code_addr); in r300FragmentProgramDump()
Dr300_fragprog_emit.c348 code->code_addr[emit->current_node] = in finish_node()
541 code->code_addr[shift + i] = code->code_addr[i]; in r300BuildFragmentProgramHwCode()
543 code->code_addr[i] = 0; in r300BuildFragmentProgramHwCode()
Dradeon_code.h221 uint32_t code_addr[4]; /* US_CODE_ADDR */ member
/external/lldb/source/Core/
DAddress.cpp324 addr_t code_addr = GetLoadAddress (target); in GetCallableLoadAddress() local
327 return target->GetCallableLoadAddress (code_addr, GetAddressClass()); in GetCallableLoadAddress()
328 return code_addr; in GetCallableLoadAddress()
346 addr_t code_addr = GetLoadAddress (target); in GetOpcodeLoadAddress() local
347 if (code_addr != LLDB_INVALID_ADDRESS) in GetOpcodeLoadAddress()
348 code_addr = target->GetOpcodeLoadAddress (code_addr, GetAddressClass()); in GetOpcodeLoadAddress()
349 return code_addr; in GetOpcodeLoadAddress()
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCTrampolineHandler.cpp352 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; in SetUpRegion() local
353 m_descriptors.push_back (VTableDescriptor(flags, code_addr)); in SetUpRegion()
355 if (m_code_start_addr == 0 || code_addr < m_code_start_addr) in SetUpRegion()
356 m_code_start_addr = code_addr; in SetUpRegion()
357 if (code_addr > m_code_end_addr) in SetUpRegion()
358 m_code_end_addr = code_addr; in SetUpRegion()
/external/lldb/source/Target/
DTarget.cpp1900 addr_t code_addr = load_addr; in GetCallableLoadAddress() local
1917 if ((code_addr & 1ull) == 0) in GetCallableLoadAddress()
1920 if (code_addr & 2ull) in GetCallableLoadAddress()
1923 code_addr |= 1ull; in GetCallableLoadAddress()
1929 code_addr |= 1ull; in GetCallableLoadAddress()
1939 return code_addr; in GetCallableLoadAddress()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_fs.c352 OUT_CB_TABLE(code->code_addr, 4); in r300_emit_fs_code_to_buffer()