Lines Matching defs:buf
72 static inline void le32_to_cpu_array(uint32_t *buf, unsigned int words)
75 *buf = ntohl(*buf);
76 buf++;
80 static inline void cpu_to_le32_array(uint32_t *buf, unsigned int words)
83 *buf = htonl(*buf);
84 buf++;
393 char *buf;
401 buf = read_text_file(filelist);
404 while ((fname = strsep(&buf, "\n"))) {
414 free(buf);