HomeSort by: relevance | last modified time | path
    Searched defs:pswa (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/
s390-linux-nat.c 69 /* Skip PSWM and PSWA, since they must be handled specially. */
165 ULONGEST pswm, pswa; local
172 pswa = extract_unsigned_integer ((const gdb_byte *) regp
177 (pswa & 0x7fffffff) | (pswm & 0x80000000));
205 ULONGEST pswa, pswm; local
223 pswa = extract_unsigned_integer (buf, 4, byte_order);
224 pswm ^= (pswm ^ pswa) & 0x80000000;
225 pswa &= 0x7fffffff;
226 store_unsigned_integer (pswa_p, 8, byte_order, pswa);
  /src/external/gpl3/gdb.old/dist/gdb/
s390-linux-nat.c 68 /* Skip PSWM and PSWA, since they must be handled specially. */
164 ULONGEST pswm, pswa; local
171 pswa = extract_unsigned_integer ((const gdb_byte *) regp
176 (pswa & 0x7fffffff) | (pswm & 0x80000000));
204 ULONGEST pswa, pswm; local
222 pswa = extract_unsigned_integer (buf, 4, byte_order);
223 pswm ^= (pswm ^ pswa) & 0x80000000;
224 pswa &= 0x7fffffff;
225 store_unsigned_integer (pswa_p, 8, byte_order, pswa);
  /src/external/gpl3/gdb/dist/gdbserver/
linux-s390-low.cc 508 unsigned int pswa; local
509 collect_register_by_name (regcache, "pswa", &pswa);
510 return pswa & 0x7fffffff;
515 collect_register_by_name (regcache, "pswa", &pc);
525 unsigned int pswa; local
526 collect_register_by_name (regcache, "pswa", &pswa);
527 pswa = (pswa & 0x80000000) | (newpc & 0x7fffffff)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-s390-low.cc 508 unsigned int pswa; local
509 collect_register_by_name (regcache, "pswa", &pswa);
510 return pswa & 0x7fffffff;
515 collect_register_by_name (regcache, "pswa", &pc);
525 unsigned int pswa; local
526 collect_register_by_name (regcache, "pswa", &pswa);
527 pswa = (pswa & 0x80000000) | (newpc & 0x7fffffff)
    [all...]

Completed in 29 milliseconds