HomeSort by relevance Sort by last modified time
    Searched refs:hp (Results 26 - 50 of 240) sorted by null

12 3 4 5 6 7 8 910

  /external/libedit/src/
common.c 708 const Char *hp; local
732 hp = HIST_FIRST(el);
733 if (hp == NULL)
739 hp = HIST_NEXT(el);
741 while (hp != NULL) {
743 (void) fprintf(el->el_errfile, "Comparing with \"%s\"\n", hp);
745 if ((Strncmp(hp, el->el_line.buffer, (size_t)
747 hp[el->el_line.lastchar - el->el_line.buffer]) &&
748 c_hmatch(el, hp)) {
753 hp = HIST_NEXT(el)
776 const Char *hp; local
    [all...]
hist.c 100 const Char *hp; local
121 hp = HIST_FIRST(el);
123 if (hp == NULL)
127 if ((hp = HIST_NEXT(el)) == NULL) {
131 (void) Strncpy(el->el_line.buffer, hp,
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpTransportSE.java 182 HeaderProperty hp = (HeaderProperty) headers.get(i); local
183 connection.setRequestProperty(hp.getKey(), hp.getValue());
213 HeaderProperty hp = (HeaderProperty) retHeaders.get(i); local
215 if (null == hp.getKey()) {
220 if (hp.getKey().equalsIgnoreCase("Content-Encoding")
221 && hp.getValue().equalsIgnoreCase("gzip")) {
  /external/libnl/lib/route/sch/
prio.c 91 int i, hp; local
105 hp = (((TC_PRIO_MAX/2) + 1) & ~1);
107 for (i = 0; i < hp; i++) {
112 if (hp+i <= TC_PRIO_MAX) {
114 rtnl_prio2str(hp+i, a, sizeof(a)),
115 prio->qp_priomap[hp+i]);
116 if (i < (hp - 1)) {
  /external/eigen/test/
geo_parametrizedline.cpp 56 HyperplaneType hp(p2,n2);
57 Scalar t = l0.intersectionParameter(hp);
59 VERIFY_IS_MUCH_SMALLER_THAN(hp.signedDistance(pi), RealScalar(1));
61 VERIFY_IS_APPROX(l0.intersectionPoint(hp), pi);
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 90 vp9_prob hp; member in struct:__anon13832
118 unsigned int hp[2]; member in struct:__anon13834
vp9_entropymv.c 60 128, // hp
70 128, // hp
167 comp_counts->hp[e] += usehp * incr;
226 comp->hp = adapt_prob(pre_comp->hp, c->hp);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymv.h 90 vp9_prob hp; member in struct:__anon24195
118 unsigned int hp[2]; member in struct:__anon24197
vp9_entropymv.c 60 128, // hp
70 128, // hp
167 comp_counts->hp[e] += usehp * incr;
226 comp->hp = adapt_prob(pre_comp->hp, c->hp);
  /external/libpcap/
nametoaddr.c 105 struct hostent *hp; local
107 if ((hp = gethostbyname(name)) != NULL) {
109 hlist[0] = (bpf_u_int32 *)hp->h_addr;
110 NTOHL(hp->h_addr);
113 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
115 return (bpf_u_int32 **)hp->h_addr_list;
  /bionic/libc/dns/net/
getnameinfo.c 172 struct hostent *hp; local
306 hp = android_gethostbyaddrfornet_proxy(addr, afd->a_addrlen, afd->a_af, netid, mark);
307 if (hp) {
315 p = strchr(hp->h_name, '.');
317 TODO: Before uncommenting rewrite to avoid modifying hp.
321 if (strlen(hp->h_name) + 1 > (size_t)hostlen) {
324 strlcpy(host, hp->h_name, hostlen);
  /external/freetype/src/gzip/
inftrees.c 95 local int huft_build( /* b, n, s, d, e, t, m, hp, hn, v) */
103 inflate_huft *hp, /* space for trees */
122 uInt mask; /* (1 << w) - 1, to avoid cc -O bug on HP */
240 u[h] = q = hp + *hn;
283 mask = (1 << w) - 1; /* needed on HP, cc -O bug */
299 local int inflate_trees_bits( /* c, bb, tb, hp, z) */
303 inflate_huft *hp, /* space for trees */
314 tb, bb, hp, &hn, v);
327 local int inflate_trees_dynamic( /* nl, nd, c, bl, bd, tl, td, hp, z) */
335 inflate_huft *hp, /* space for trees *
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 40 const int hp = offset & 1; // high precision mv data local
69 vp9_write(w, hp,
70 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
99 hp_cost[0] = vp9_cost_zero(mvcomp->hp);
100 hp_cost[1] = vp9_cost_one(mvcomp->hp);
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemv.c 40 const int hp = offset & 1; // high precision mv data local
69 vp9_write(w, hp,
70 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
99 hp_cost[0] = vp9_cost_zero(mvcomp->hp);
100 hp_cost[1] = vp9_cost_one(mvcomp->hp);
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py 123 hp = HyperParser(self.editwin, "insert")
126 if hp.is_in_string() and (not mode or mode==COMPLETE_FILES):
136 elif hp.is_in_code() and (not mode or mode==COMPLETE_ATTRIBUTES):
143 hp.set_index("insert-%dc" % (len(curline)-(i-1)))
144 comp_what = hp.get_expression()
ParenMatch.py 106 hp = HyperParser(self.editwin, "insert-1c")
107 if not hp.is_in_code():
109 indices = hp.get_surrounding_brackets(_openers[closer], True)
CallTips.py 69 hp = HyperParser(self.editwin, "insert")
70 sur_paren = hp.get_surrounding_brackets('(')
73 hp.set_index(sur_paren[0])
74 expression = hp.get_expression()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py 123 hp = HyperParser(self.editwin, "insert")
126 if hp.is_in_string() and (not mode or mode==COMPLETE_FILES):
136 elif hp.is_in_code() and (not mode or mode==COMPLETE_ATTRIBUTES):
143 hp.set_index("insert-%dc" % (len(curline)-(i-1)))
144 comp_what = hp.get_expression()
ParenMatch.py 106 hp = HyperParser(self.editwin, "insert-1c")
107 if not hp.is_in_code():
109 indices = hp.get_surrounding_brackets(_openers[closer], True)
CallTips.py 69 hp = HyperParser(self.editwin, "insert")
70 sur_paren = hp.get_surrounding_brackets('(')
73 hp.set_index(sur_paren[0])
74 expression = hp.get_expression()
  /external/libvncserver/x11vnc/
inet.c 69 struct hostent *hp; local
77 hp = gethostbyname(host);
78 if (!hp) {
83 addr.sin_addr.s_addr = *(unsigned long *)hp->h_addr;
91 struct hostent *hp; local
97 hp = gethostbyaddr(raw, len, AF_INET);
98 if (!hp) {
101 str = strdup(hp->h_name);
115 struct hostent *hp; local
127 hp = gethostbyaddr((char *)&iaddr, sizeof(in_addr_t), AF_INET)
    [all...]
  /external/openssh/
umac.c 333 static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
335 * then stored via hp pointer. The length of the data pointed at by "dp",
347 h = *((UINT64 *)hp);
363 *((UINT64 *)hp) = h;
368 static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
381 h1 = *((UINT64 *)hp);
382 h2 = *((UINT64 *)hp + 1);
409 ((UINT64 *)hp)[0] = h1;
410 ((UINT64 *)hp)[1] = h2;
415 static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocamldec.swg 66 #define SWIG_Tag_hp(hp) (((unsigned char *) (hp)) [sizeof(caml_value_t)-1])
71 #define SWIG_Tag_hp(hp) (((unsigned char *) (hp)) [0])
  /bionic/libc/dns/include/
hostent.h 51 struct hostent *hp; member in struct:getnamaddr
  /external/ipsec-tools/src/racoon/
isakmp_frag.c 169 int *hp; local
171 hp = (int *)(gen + 1);
173 return ntohl(hp[MD5_DIGEST_LENGTH / sizeof(*hp)]);

Completed in 483 milliseconds

12 3 4 5 6 7 8 910