HomeSort by relevance Sort by last modified time
    Searched defs:hp (Results 101 - 125 of 183) sorted by null

1 2 3 45 6 7 8

  /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/iputils/
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...]
arping.c 1088 struct hostent *hp; local
1101 hp = gethostbyname2(idn, AF_INET);
1102 if (!hp) {
1111 memcpy(&dst, hp->h_addr, 4);
  /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/swiftshader/third_party/LLVM/lib/CodeGen/
Splitter.cpp 466 MachineBasicBlock &hp = **hpItr; local
467 hp.ReplaceUsesOfBlockWith(&header, preHeader);
  /external/tcpdump/
addrtoname.c 223 register struct hostent *hp; local
245 hp = gethostbyaddr((char *)&addr, 4, AF_INET);
246 if (hp) {
249 p->name = strdup(hp->h_name);
252 "getname: strdup(hp->h_name)");
275 register struct hostent *hp; local
300 hp = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET6);
301 if (hp) {
304 p->name = strdup(hp->h_name);
307 "getname6: strdup(hp->h_name)")
    [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...]
  /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 211 const HEADER *hp; local
250 hp = &answer->hdr;
251 ancount = ntohs(hp->ancount);
252 qdcount = ntohs(hp->qdcount);
518 gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen,
532 *result = gethostbyname_internal(name, AF_INET6, res, hp, buf, buflen, errorp,
539 *result = gethostbyname_internal(name, AF_INET, res, hp, buf, buflen, errorp,
551 gethostbyname2_r(const char *name, int af, struct hostent *hp, char *buf,
561 *result = gethostbyname_internal(name, af, res, hp, buf, buflen, errorp,
600 android_read_hostent(FILE* proxy, struct hostent* hp, char* hbuf, size_t hbuflen, int *he
1157 char *hp; local
1179 struct hostent *hp; local
1242 struct hostent *hp; local
1359 struct hostent *hp = info->hp; local
1476 struct hostent *hp = NULL; local
1528 struct hostent *hp; local
1620 struct hostent *hp; local
    [all...]
  /bionic/libc/dns/resolv/
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...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getaddrinfo.c 1076 const HEADER *hp; local
1108 hp = &answer->hdr;
1109 ancount = ntohs(hp->ancount);
1110 qdcount = ntohs(hp->qdcount);
1685 HEADER *hp; local
1789 HEADER *hp; local
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 42 package com.hp.creals;
  /external/deqp/external/vulkancts/modules/vulkan/clipping/
vktClippingTests.cpp 118 const float hp = 0.5f; local
130 vertices.push_back(offset + Vec4( -hp, -hp, z, w));
131 vertices.push_back(offset + Vec4( hp, -hp, slope + z, w));
132 vertices.push_back(offset + Vec4( -hp, hp, z, w));
133 vertices.push_back(offset + Vec4( hp, hp, slope + z, w));
    [all...]
  /external/flatbuffers/samples/
monster_generated.h 149 int16_t hp; member in struct:MyGame::Sample::MonsterT
157 hp(100),
187 int16_t hp() const { function in struct:MyGame::Sample::FLATBUFFERS_FINAL_CLASS
261 void add_hp(int16_t hp) {
262 fbb_.AddElement<int16_t>(Monster::VT_HP, hp, 100);
298 int16_t hp = 100,
311 builder_.add_hp(hp);
322 int16_t hp = 100,
333 hp,
437 { auto _e = hp(); _o->hp = _e; }
    [all...]
  /external/flatbuffers/tests/
JavaTest.java 207 TestEq(monster.hp(), (short)80);
308 TestEq(nestedMonsterHp, nestedMonster.hp());
test.cpp 193 TEST_EQ(monster->hp(), 80);
245 TEST_EQ(vecoftables->Get(0)->hp(), 1000);
287 TEST_EQ(monster->hp(), 10);
308 TEST_EQ(first->hp(), 1000);
310 TEST_EQ(first->hp(), 0);
360 TEST_EQ(monster2->hp, 80);
395 TEST_EQ(vecoftables[0]->hp, 1000);
421 TEST_EQ(m->hp(), 300);
477 auto hp_field_ptr = fields->LookupByKey("hp");
480 TEST_EQ_STR(hp_field.name()->c_str(), "hp");
503 auto hp = flatbuffers::GetFieldI<uint16_t>(root, hp_field); local
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Monster.java 25 public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 100; } method in class:Monster
26 public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, hp); return true; } else { return false; } }
94 public static void addHp(FlatBufferBuilder builder, short hp) { builder.addShort(2, hp, 100); }
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 237 int mag, d, fr, hp; local
259 // High precision part (if hp is not used, the default value of the hp is 1)
260 hp = usehp ? vpx_read(r, class0 ? mvcomp->class0_hp : mvcomp->hp) : 1;
263 mag += ((d << 3) | (fr << 1) | hp) + 1;
  /external/libxml2/
nanoftp.c 857 struct hostent *hp; local
933 hp = gethostbyname (GETHOSTBYNAME_ARG_CAST proxy);
935 hp = gethostbyname (GETHOSTBYNAME_ARG_CAST ctxt->hostname);
936 if (hp == NULL) {
940 if ((unsigned int) hp->h_length >
951 hp->h_addr_list[0], hp->h_length);
    [all...]
  /external/mksh/src/
histrap.c 93 char **hfirst, **hlast, **hp, *editor = NULL; local
184 hp = first ? hist_get(first, false, false) :
186 if (!hp)
190 strdupx(line, *hp, ATEMP);
201 for (s = *hp; (s1 = strstr(s, pat)) &&
272 for (hp = rflag ? hlast : hfirst;
273 hp >= hfirst && hp <= hlast; hp += rflag ? -1 : 1) {
277 (unsigned long)(histptr - hp));
391 char **hp = NULL; local
484 char **hp; local
609 char **hp, *c; local
776 char *nhname, **hp; local
876 char **hp; local
    [all...]
  /external/netperf/src/
nettest_xti.c 538 struct hostent *hp;
566 /* it would seem that while HP-UX will allow an IP address (as a */
573 if ((hp = gethostbyname(remote_host)) == NULL) {
583 bcopy(hp->h_addr,
585 hp->h_length);
586 server.sin_family = hp->h_addrtype;
534 struct hostent *hp; local
1739 struct hostent *hp; local
2467 struct hostent *hp; local
3459 struct hostent *hp; local
5020 struct hostent *hp; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 414 HostPort hp = this.getHostPort(); local
415 if (hp == null)
417 return hp.getPort();
    [all...]

Completed in 1467 milliseconds

1 2 3 45 6 7 8