OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PTR_DIFF
(Results
1 - 4
of
4
) sorted by null
/external/tcpdump/
smb.h
119
#define
PTR_DIFF
(p1, p2) ((size_t)(((const char *)(p1)) - (const char *)(p2)))
print-smb.c
420
smb_print_data(ndo, words + 1, min(wct * 2,
PTR_DIFF
(maxbuf, words + 1)));
430
smb_print_data(ndo, data + 2, min(EXTRACT_LE_16BITS(data),
PTR_DIFF
(maxbuf, data + 2)));
464
smb_print_data(ndo, words + 1, min(wct * 2,
PTR_DIFF
(maxbuf, words + 1)));
474
smb_print_data(ndo, data + 2, min(EXTRACT_LE_16BITS(data),
PTR_DIFF
(maxbuf, data + 2)));
514
smb_print_data(ndo, data + 2, min(EXTRACT_LE_16BITS(data),
PTR_DIFF
(maxbuf, data + 2)));
889
smb_print_data(ndo, data + 2, min(bcc,
PTR_DIFF
(maxbuf, data + 2)));
[
all
...]
smbutil.c
242
return(
PTR_DIFF
(s, s0) + 1);
331
size_t l =
PTR_DIFF
(p, fmt);
465
l =
PTR_DIFF
(p, fmt);
703
name_type = name_extract(ndo, startbuf,
PTR_DIFF
(buf, startbuf),
861
size_t len =
PTR_DIFF
(maxbuf, buf);
[
all
...]
/external/u-boot/fs/jffs2/
compr_lzo.c
144
#define
PTR_DIFF
(a,b) ((lzo_ptrdiff_t) (PTR(a) - PTR(b)))
Completed in 3247 milliseconds