Lines Matching refs:width
64 target_read_string (CORE_ADDR addr, int len, int width,
85 buffer->reset ((gdb_byte *) xmalloc (fetchlen * width));
88 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode)
89 / width;
90 addr += nfetch * width;
91 bufptr += nfetch * width;
114 buffer->reset ((gdb_byte *) xmalloc (nfetch * width));
117 (nfetch + bufsize) * width));
119 bufptr = buffer->get () + bufsize * width;
123 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode)
124 / width;
132 limit = bufptr + nfetch * width;
137 for (int i = 0; !found_nonzero && i < width; ++i)
141 addr += width;
142 bufptr += width;
154 && bufptr - buffer->get () < fetchlimit * width /* no overrun */