Searched refs:tail (Results 1 – 4 of 4) sorted by relevance
/development/ndk/platforms/android-3/include/linux/ |
D | circ_buf.h | 18 int tail; member 21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1)) argument 23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size)) argument 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & (… argument 27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail… argument
|
D | skbuff.h | 160 *tail, member
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
D | nfnetlink.h | 59 #define NFA_NEST(skb, type) ({ struct nfattr *__start = (struct nfattr *) (skb)->tail; NFA_PUT(s… 60 #define NFA_NEST_END(skb, start) ({ (start)->nfa_len = ((skb)->tail - (unsigned char *) (start)); …
|
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/ |
D | ProvisioningValuesLoader.java | 155 int tail = wifiSsid.endsWith("\"") ? 1 : 0; in trimSsid() local 156 return wifiSsid.substring(head, wifiSsid.length() - tail); in trimSsid()
|