/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/ |
ServiceListener.java | 17 package com.android.printservice.recommendation.plugin.hp;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_entropymv.h | 90 vp9_prob hp; member in struct:__anon31504 118 unsigned int hp[2]; member in struct:__anon31506
|
/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);
|
/system/netd/server/ |
DnsProxyListener.cpp | 125 static bool sendhostent(SocketClient *c, struct hostent *hp) { 128 if (hp->h_name != NULL) { 129 success &= sendLenAndData(c, strlen(hp->h_name)+1, hp->h_name); 134 for (i=0; hp->h_aliases[i] != NULL; i++) { 135 success &= sendLenAndData(c, strlen(hp->h_aliases[i])+1, hp->h_aliases[i]); 139 uint32_t buf = htonl(hp->h_addrtype); 142 buf = htonl(hp->h_length); 145 for (i=0; hp->h_addr_list[i] != NULL; i++) 381 struct hostent* hp = android_gethostbynamefornet(mName, mAf, mNetId, mMark); local 501 struct hostent* hp; local [all...] |
/external/iputils/ |
clockdiff.c | 554 struct hostent * hp; local 602 hp = gethostbyname(hostname); 603 if (hp == NULL) { 607 myname = strdup(hp->h_name); 609 hp = gethostbyname(argv[1]); 610 if (hp == NULL) { 614 hisname = strdup(hp->h_name); 617 server.sin_family = hp->h_addrtype; 618 memcpy(&(server.sin_addr.s_addr), hp->h_addr, 4);
|
rarpd.c | 299 struct hostent *hp; local 309 (hp = gethostbyname(ename)) == NULL) { 314 if (hp->h_addrtype != AF_INET) { 318 ifa = select_ipaddr(ifindex, &emap.ipaddr, (__u32 **)hp->h_addr_list);
|
ping.c | 121 struct hostent *hp; local 287 hp = gethostbyname(idn); 288 if (!hp) { 295 memcpy(&whereto.sin_addr, hp->h_addr, 4); 297 if (idna_to_unicode_lzlz(hp->h_name, &hnamebuf, 0) != IDNA_SUCCESS) { 298 hnamebuf = strdup(hp->h_name); 305 strncpy(hnamebuf, hp->h_name, sizeof(hnamebuf) - 1); 1314 struct hostent *hp; local [all...] |
traceroute6.c | 341 struct hostent *hp; local 458 hp = gethostbyname2(idn ? idn : *argv, AF_INET6); 459 if (hp) { 460 memmove((caddr_t)&to->sin6_addr, hp->h_addr, sizeof(to->sin6_addr)); 461 hostname = (char *)hp->h_name; 909 struct hostent *hp; local 914 if ((hp = gethostbyaddr((char *)&from->sin6_addr, 917 if (idna_to_unicode_lzlz(hp->h_name, &s, 0) != IDNA_SUCCESS) 922 Printf(" %s (%s)", hp ? (s ? s : hp->h_name) : hostname, pa) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
StringMsgParser.java | 575 HeaderParser hp = ParserFactory.createParser(buffer.toString()); local 576 if (hp == null) 578 return hp.parse();
|
/bionic/libc/dns/resolv/ |
res_send.c | 757 const HEADER *hp = (const HEADER *)(const void *)buf; local 956 if (hp->id != anhp->id) { 1088 const HEADER *hp = (const HEADER *)(const void *)buf; local [all...] |
res_debug.c | 922 u_int8_t hp = 0x16; /* default = 1e6 cm = 10000.00m = 10km */ local 994 hp = precsize_aton(&cp); 1012 *bcp++ = hp; [all...] |
/external/bzip2/ |
blocksort.c | 494 Int32 i, j, h, bigN, hp; local 500 hp = 0; 501 while (incs[hp] < bigN) hp++; 502 hp--; 504 for (; hp >= 0; hp--) { 505 h = incs[hp];
|
/external/crcalc/tests/src/com/hp/creals/ |
CRTest.java | 41 // Added test for division by negative number. Hans_Boehm@hp.com, 8/13/01 47 package com.hp.creals;
|
SlowCRTest.java | 20 package com.hp.creals;
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
Quaternion.java | 135 final float hp = pitch * 0.5f;
local 136 final float shp = (float)Math.sin(hp);
137 final float chp = (float)Math.cos(hp);
[all...] |
/external/libpcap/Win32/Src/ |
getaddrinfo.c | 521 struct hostent *hp; local 558 hp = getipnodebyname(hostname, pai->ai_family, AI_ADDRCONFIG, &h_error); 561 hp = gethostbyname2(hostname, pai->ai_family); 565 hp = gethostbyname(hostname); 574 if (hp == NULL) { 589 } else if ((hp->h_name == NULL) || (hp->h_name[0] == 0) 590 || (hp->h_addr_list[0] == NULL)) { 592 freehostent(hp); 594 hp = NULL 920 struct hostent *hp = NULL; local [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodemv.c | 255 int mag, d, fr, hp; local 278 // High precision part (if hp is not used, the default value of the hp is 1) 279 hp = usehp ? vpx_read(r, class0 ? mvcomp->class0_hp : mvcomp->hp) 283 mag += ((d << 3) | (fr << 1) | hp) + 1;
|
/external/opencv3/3rdparty/libtiff/ |
tif_lzw.c | 864 register hash_t *hp; local 915 hp = &sp->enc_hashtab[h]; 916 if (hp->hash == fcode) { 917 ent = hp->code; 920 if (hp->hash >= 0) { 934 hp = &sp->enc_hashtab[h]; 935 if (hp->hash == fcode) { 936 ent = hp->code; 939 } while (hp->hash >= 0); 957 hp->code = free_ent++ 1057 register hash_t *hp = &sp->enc_hashtab[HSIZE-1]; local [all...] |
/external/pdfium/third_party/libtiff/ |
tif_lzw.c | 873 register hash_t *hp; local 925 hp = &sp->enc_hashtab[h]; 926 if (hp->hash == fcode) { 927 ent = hp->code; 930 if (hp->hash >= 0) { 944 hp = &sp->enc_hashtab[h]; 945 if (hp->hash == fcode) { 946 ent = hp->code; 949 } while (hp->hash >= 0); 967 hp->code = free_ent++ 1068 register hash_t *hp = &sp->enc_hashtab[HSIZE-1]; local [all...] |
/external/tcpdump/ |
addrtoname.c | 224 register struct hostent *hp; local 246 hp = gethostbyaddr((char *)&addr, 4, AF_INET); 247 if (hp) { 250 p->name = strdup(hp->h_name); 272 register struct hostent *hp; local 297 hp = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET6); 298 if (hp) { 301 p->name = strdup(hp->h_name); 956 { 0x0112, "HP PrintServer" }, 1013 { 0x030c, "IntelNetport2/HP JetDirect/HP Quicksilver" } [all...] |
/external/valgrind/VEX/priv/ |
host_generic_reg_alloc2.c | 239 Int i, j, h, bigN, hp; local 247 hp = 0; while (hp < 14 && incs[hp] < bigN) hp++; hp--; 251 for ( ; hp >= 0; hp--) { 252 h = incs[hp]; 267 for ( ; hp >= 0; hp--) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_decodemv.c | 206 int mag, d, fr, hp; local 228 // High precision part (if hp is not used, the default value of the hp is 1) 229 hp = usehp ? vp9_read(r, class0 ? mvcomp->class0_hp : mvcomp->hp) 233 mag = vp9_get_mv_mag(mv_class, (d << 3) | (fr << 1) | hp) + 1;
|
/ndk/sources/host-tools/make-3.81/ |
alloca.c | 185 register header *hp; /* Traverses linked list. */ local 191 for (hp = last_alloca_header; hp != NULL;) 192 if ((STACK_DIR > 0 && hp->h.deep > depth) 193 || (STACK_DIR < 0 && hp->h.deep < depth)) 195 register header *np = hp->h.next; 197 free ((pointer) hp); /* Collect garbage. */ 199 hp = np; /* -> next header. */ 204 last_alloca_header = hp; /* -> last valid storage. */
|
/toolchain/binutils/binutils-2.25/libiberty/ |
alloca.c | 176 register header *hp; /* Traverses linked list. */ local 178 for (hp = last_alloca_header; hp != NULL;) 179 if ((STACK_DIR > 0 && hp->h.deep > depth) 180 || (STACK_DIR < 0 && hp->h.deep < depth)) 182 register header *np = hp->h.next; 184 free ((PTR) hp); /* Collect garbage. */ 186 hp = np; /* -> next header. */ 191 last_alloca_header = hp; /* -> last valid storage. */
|
/bionic/libc/dns/net/ |
gethnamaddr.c | 204 const HEADER *hp; local 243 hp = &answer->hdr; 244 ancount = ntohs(hp->ancount); 245 qdcount = ntohs(hp->qdcount); 511 gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen, 525 *result = gethostbyname_internal(name, AF_INET6, res, hp, buf, buflen, errorp, NETID_UNSET, 532 *result = gethostbyname_internal(name, AF_INET, res, hp, buf, buflen, errorp, NETID_UNSET, 544 gethostbyname2_r(const char *name, int af, struct hostent *hp, char *buf, 554 *result = gethostbyname_internal(name, af, res, hp, buf, buflen, errorp, NETID_UNSET, 593 android_read_hostent(FILE* proxy, struct hostent* hp, char* hbuf, size_t hbuflen, int *he 1150 char *hp; local 1172 struct hostent *hp; local 1235 struct hostent *hp; local 1354 struct hostent *hp = info->hp; local 1471 struct hostent *hp = NULL; local 1523 struct hostent *hp; local 1592 struct hostent *hp; local [all...] |