Searched refs:size_byte (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/emacs-93/emacs/src/
H A Dprint.c375 strout (ptr, size, size_byte, printcharfun, multibyte)
377 int size, size_byte;
382 size_byte = size = strlen (ptr);
386 if (print_buffer_pos_byte + size_byte > print_buffer_size)
388 print_buffer_size = print_buffer_size * 2 + size_byte;
392 bcopy (ptr, print_buffer + print_buffer_pos_byte, size_byte);
394 print_buffer_pos_byte += size_byte;
403 fwrite (ptr, 1, size_byte, stdout);
416 message_dolog (ptr, size_byte, 0, multibyte_p);
418 if (size == size_byte)
534 int size_byte = SBYTES (string); local
1571 int size_byte; local
1684 int i, i_byte, size_byte; local
[all...]
H A Dfns.c1258 int size_byte = 0;
1268 size_byte = SBYTES (string);
1276 to_byte = size_byte;
1327 int size, size_byte;
1334 size_byte = SBYTES (string);
1351 to_byte = size_byte;
1383 int size_byte;
1390 size_byte = SBYTES (string);
2358 int size_byte = SBYTES (array);
2359 unsigned char *p1 = p, *endp = p + size_byte;
1251 int size_byte = 0; variable
1320 int size, size_byte; variable
1376 int size_byte; local
2344 int size_byte = SBYTES (array); variable
5546 int size_byte = 0; variable
[all...]
H A Dlread.c3506 oblookup (obarray, ptr, size, size_byte)
3509 int size, size_byte;
3525 hash = hash_string (ptr, size_byte);
3536 if (SBYTES (SYMBOL_NAME (tail)) == size_byte
3538 && !bcmp (SDATA (SYMBOL_NAME (tail)), ptr, size_byte))
H A Dlisp.h690 (XSTRING (STR)->size_byte >= 0)
703 ((STR)->size_byte < 0 ? (STR)->size : (STR)->size_byte)
708 #define STRING_SET_UNIBYTE(STR) (XSTRING (STR)->size_byte = -1)
721 EMACS_INT size_byte;
717 EMACS_INT size_byte; member in struct:Lisp_String
H A Dalloc.c1784 int nbytes = (s->size_byte < 0 ? s->size & ~ARRAY_MARK_FLAG : s->size_byte);
1953 S->data. Set S->size to NCHARS and S->size_byte to NBYTES. Free
2041 s->size_byte = nbytes;
4909 s->size_byte = multibyte ? nbytes : -1;

Completed in 306 milliseconds