HomeSort by relevance Sort by last modified time
    Searched defs:ep (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/syslinux/com32/lib/
suffix_number.c 41 char *ep; local
45 v = strtoull(str, &ep, 0);
46 switch (*ep | 0x20) {
  /external/dhcpcd-6.8.2/compat/
strtoi.c 40 char *ep; local
44 endptr = &ep;
80 char *ep; local
84 endptr = &ep;
  /external/syslinux/com32/samples/
advdump.c 26 uint8_t *p, *ep; local
42 ep = p + s; /* Need at least opcode+len */
43 while (p < ep - 1 && *p) {
47 if (p + l > ep)
  /external/tcpdump/
print-rt6.c 43 register const u_char *ep; local
49 /* 'ep' points to the end of available data. */
50 ep = ndo->ndo_snapend;
75 if ((const u_char *)(addr + 1) > ep)
print-loopback.c 60 const u_char *ep = cp + len; local
102 ND_TCHECK2(*cp, ep - cp);
111 const u_char *ep = cp + len; local
131 ND_TCHECK2(*cp, ep - cp);
print-ether.c 95 register const struct ether_header *ep; local
98 ep = (const struct ether_header *)bp;
101 etheraddr_string(ndo, ESRC(ep)),
102 etheraddr_string(ndo, EDST(ep))));
104 length_type = EXTRACT_16BITS(&ep->ether_length_type);
137 const struct ether_header *ep; local
162 ep = (const struct ether_header *)p;
166 src.addr = ESRC(ep);
168 dst.addr = EDST(ep);
170 length_type = EXTRACT_16BITS(&ep->ether_length_type)
    [all...]
print-openflow.c 79 of_header_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
85 if (ep < cp + OF_HEADER_LEN)
116 return of10_header_body_print(ndo, cp, ep, type, length, xid);
125 ND_TCHECK2(*cp, ep - cp);
126 return ep;
129 return ep;
137 const u_char *ep = cp + len; local
140 while (cp < ep)
141 cp = of_header_body_print(ndo, cp, ep);
print-zeromq.c 77 zmtp1_print_frame(netdissect_options *ndo, const u_char *cp, const u_char *ep)
101 body_len_captured = ep - cp - header_len;
140 return ep;
146 const u_char *ep = min(ndo->ndo_snapend, cp + len); local
149 while (cp < ep)
150 cp = zmtp1_print_frame(ndo, cp, ep);
215 const u_char *ep = min(ndo->ndo_snapend, cp + len); local
218 while (cp < ep)
219 cp = zmtp1_print_frame(ndo, cp, ep);
  /device/linaro/bootloader/arm-trusted-firmware/bl31/
bl31_context_mgmt.c 102 void cm_init_context(unsigned long mpidr, const entry_point_info_t *ep)
106 cm_init_my_context(ep);
108 cm_init_context_by_index(platform_get_core_pos(mpidr), ep); local
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_ntop.c 104 char *tp, *ep; local
145 ep = tmp + sizeof(tmp);
146 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
151 if (tp + 1 >= ep) {
161 if (tp + 1 >= ep) {
170 if (!inet_ntop4(src+12, tp, ep - tp))
175 advance = snprintf(tp, ep - tp, "%x", words[i]);
176 if (advance <= 0 || advance >= ep - tp) {
184 if (tp + 1 >= ep) {
190 if (tp + 1 >= ep) {
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
execution_state_switch.c 44 entry_point_info_t ep; local
144 zeromem(&ep, sizeof(ep));
145 ep.pc = pc;
146 ep.spsr = spsr;
147 SET_PARAM_HEAD(&ep, PARAM_EP, VERSION_1,
156 cm_init_my_context(&ep);
  /device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
inet_ntop.c 139 char *tp, *ep; local
185 ep = tmp + sizeof(tmp);
196 if (tp + 1 >= ep)
205 if (!inet_ntop4(src+12, tp, (socklen_t)(ep - tp)))
210 advance = snprintf(tp, (size_t)(ep - tp), "%x", words[i]);
211 if (advance <= 0 || advance >= ep - tp)
218 if (tp + 1 >= ep)
222 if (tp + 1 >= ep)
  /external/libpng/contrib/tools/
cvtcolor.c 36 char *ep; local
37 unsigned long c = strtoul(arg, &ep, 0);
39 if (ep <= arg || *ep || c > 65535 || (issRGB && c > 255))
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 58 char *ep, *p; local
67 if ((n = strtol(p, &ep, 10)) < 0)
71 if (*ep && ep[1])
73 switch (*ep) {
  /toolchain/binutils/binutils-2.27/libiberty/
setenv.c 85 register char **ep = 0; local
95 for (ep = __environ; *ep != NULL; ++ep)
96 if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
102 if (__environ == NULL || *ep == NULL)
141 size_t len = strlen (*ep);
151 *ep = new_string;
153 memcpy (*ep, name, namelen)
167 char **ep; local
    [all...]
  /bionic/libc/dns/resolv/
res_mkquery.c 127 register u_char *cp, *ep; local
151 ep = buf + buflen;
162 if (ep - cp < QFIXEDSZ)
164 if ((n = dn_comp(dname, cp, ep - cp - QFIXEDSZ, dnptrs,
178 if ((ep - cp) < RRFIXEDSZ)
180 n = dn_comp((const char *)data, cp, ep - cp - RRFIXEDSZ,
200 if (ep - cp < 1 + RRFIXEDSZ + datalen)
238 register u_char *cp, *ep; local
248 ep = buf + buflen;
250 if ((ep - cp) < 1 + RRFIXEDSZ
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
strptime.c 315 const unsigned char *ep; local
317 ep = find_string(bp, &i,
320 if (ep != NULL) {
329 bp = ep;
  /external/iptables/extensions/
libip6t_dst.c 35 char* ep; local
37 id = strtoul(idstr, &ep, 0);
39 if ( idstr == ep ) {
48 if ( *idstr != '\0' && *ep != '\0' ) {
libip6t_hbh.c 37 char* ep; local
39 id = strtoul(idstr,&ep,0) ;
41 if ( idstr == ep ) {
50 if ( *idstr != '\0' && *ep != '\0' ) {
  /external/libpng/contrib/examples/
iccfrompng.c 107 const char *ep = strrchr(filename, '.'); local
109 if (ep != NULL)
110 len = ep-filename;
  /external/syslinux/memdisk/
msetup.c 150 struct e820range *ep; local
155 for (ep = ranges; ep->type != -1U; ep++) {
156 if (ep->type == 1) {
158 if (ep->start == 0) {
159 if (ep[1].start > PW(20))
162 dos_mem = ep[1].start;
164 if (ep->start <= PW(20) && ep[1].start > PW(20))
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 47 char *start, *cp, *ep; local
59 ep = path + len - slen;
61 for (start = ep; start > path && start[-1] == 'X'; start--)
63 if (ep - start < MIN_X) {
86 for (i = 0; i < nitems(rbuf) && cp != ep; i++)
88 } while (cp != ep);
  /device/linaro/bootloader/arm-trusted-firmware/lib/psci/
psci_main.c 27 entry_point_info_t ep; local
35 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
43 return psci_cpu_on_start(target_cpu, &ep);
57 entry_point_info_t ep; local
131 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
142 psci_cpu_suspend_start(&ep,
155 entry_point_info_t ep; local
162 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
180 psci_cpu_suspend_start(&ep,
  /external/freetype/src/base/
ftpsprop.c 64 char* ep; local
71 dp[i] = (FT_Int)ft_strtol( s, &ep, 10 );
72 if ( *ep != ',' || s == ep )
75 s = ep + 1;
78 dp[7] = (FT_Int)ft_strtol( s, &ep, 10 );
79 if ( !( *ep == '\0' || *ep == ' ' ) || s == ep )
  /external/giflib/
gifalloc.c 230 ExtensionBlock *ep; local
246 ep = &(*ExtensionBlocks)[(*ExtensionBlockCount)++];
248 ep->Function = Function;
249 ep->ByteCount=Len;
250 ep->Bytes = (GifByteType *)malloc(ep->ByteCount);
251 if (ep->Bytes == NULL)
255 memcpy(ep->Bytes, ExtData, Len);
265 ExtensionBlock *ep; local
270 for (ep = *ExtensionBlocks
    [all...]

Completed in 994 milliseconds

1 2 3 4 5 6 7 8 91011