Lines Matching refs:stub
30 stub = {
37 stub["data"] = data_section.data
38 stub["data_start"] = data_section.addr
44 stub["bss_start"] = s.addr
47 if len(stub["text"]) % 4 != 0:
48 stub["text"] += (4 - (len(stub["text"]) % 4)) * "\0"
53 len(stub["text"]),
54 stub["text_start"],
55 len(stub.get("data", "")),
56 stub.get("data_start", 0),
57 stub["entry"],
62 return stub