Home | History | Annotate | Download | only in string

Lines Matching defs:bytes

107 	 * Get the number of unaligned bytes to fill in the first word.
114 * We want to clear <fill_count> trailing bytes in the word.
117 * have bits set for the bytes we won't be filling.
132 * off the bytes we are filling and then fill in those
133 * bytes with the new fill value.
142 * bytes to preserve.
148 * bytes of word.
184 * We want to clear <len> leading bytes in the word.
186 * bits, respectively. But as we want the mask of the bytes to
188 * the keep_mask will only have bits set for the bytes we won't
191 * But the keep_mask could already have bytes to preserve
202 * Now we mask off the bytes we are filling and then fill in
203 * those bytes with the new fill value.
238 uint8_t bytes[sizeof(memword_t) * 4];
254 memset(testmem.bytes, 0xff, sizeof(testmem));
255 test_memset(testmem.bytes + start, 0x00, len);
261 if (testmem.bytes[i] != check_value) {
267 i, testmem.bytes[i], check_value);