HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 26 - 50 of 676) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
ia64-test-sig.c 24 /* This test uses the unwind interface to modify the IP in an ancestor
42 unw_word_t ip; local
64 if (unw_get_reg (&cursor2, UNW_REG_IP, &ip) < 0)
65 panic ("failed to get IP!\n");
68 ++ip;
69 if ((ip & 0x3) == 0x3)
70 ip += 13;
72 if (unw_set_reg (&cursor2, UNW_REG_IP, ip) < 0)
73 panic ("failed to set IP!\n");
  /external/lzma/C/
XzEnc.h 17 UInt32 ip; member in struct:__anon28762
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cmod_propagation.cpp 55 int ip = block->end_ip + 1; local
58 ip--;
brw_fs_saturate_propagation.cpp 49 int ip = block->end_ip + 1; local
52 ip--;
77 } else if (src_end_ip == ip || inst->dst.equals(inst->src[0])) {
brw_vec4_cmod_propagation.cpp 42 int ip = block->end_ip + 1; local
45 ip--;
  /external/skia/tests/
ParametricStageTest.cpp 20 SkJumper_MemoryCtx ip = { in, 0}, local
24 p.append(SkRasterPipeline::load_f32, &ip);
  /external/skqp/tests/
ParametricStageTest.cpp 20 SkJumper_MemoryCtx ip = { in, 0}, local
24 p.append(SkRasterPipeline::load_f32, &ip);
  /external/syslinux/gpxe/src/core/
misc.c 19 unsigned long ip = 0; local
27 ip = (ip << 8) | val;
30 inp->s_addr = htonl(ip);
  /external/valgrind/helgrind/tests/
hg03_inherit.c 15 volatile int *ip = (int *)v; local
17 *ip += 44;
18 *ip *= 2;
25 volatile int *ip = (int *)v; local
28 *ip += 88;
29 *ip *= 3;
  /art/runtime/
backtrace_helper.h 42 const uintptr_t ip = _Unwind_GetIP(context); local
44 if (ip != 0 && state->skip_count_ > 0) {
48 // ip may be off for ARM but it shouldn't matter since we only use it for hashing.
49 state->out_frames_[state->num_frames_] = ip;
  /device/generic/goldfish/wifi/ipv6proxy/
packet.h 42 // Full size including IP header
46 // Remaining size including ICMPv6 header but excluding IP header
54 const ip6_hdr* ip() const { function in class:Packet
  /external/android-clat/
getaddr.c 36 union anyip ip; member in struct:target
65 memcpy(&targ_p->ip.ip6, RTA_DATA(rta_p), rta_p->rta_len - sizeof(struct rtattr));
72 memcpy(&targ_p->ip.ip4, RTA_DATA(rta_p), rta_p->rta_len - sizeof(struct rtattr));
96 * finds the first global non-privacy IP of the given family for the given interface, or returns NULL. caller frees pointer
132 memcpy(retval, &targ.ip, sizeof(union anyip));
  /external/boringssl/src/crypto/bio/
socket.c 147 int *ip; local
158 ip = (int *)ptr;
159 if (ip != NULL) {
160 *ip = b->num;
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p19.cpp 14 int *ip = I; // expected-error{{cannot initialize}} local
36 int *ip = I; // expected-error{{cannot initialize}} local
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p3.cpp 11 int* const ip = ap; local
18 const int* const &ip = ap; local
p4.cpp 27 int * const * const * const ip = a3; local
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p11.cpp 7 int *ip = f<int>(1); // calls #1 local
21 int* ip = f2<int>(1); local
  /external/clang/test/Index/
complete-macros.c 13 int *ip = nil; local
14 ip = nil;
  /external/clang/test/PCH/
chain-conversion-lookup.cpp 20 int *ip = x.operator int*(); local
  /external/clang/test/Sema/
overloadable-complex.c 17 int *ip = foo(fc); local
26 int *ip = foo(fc); local
  /external/clang/test/SemaCXX/
complex-overload.cpp 17 int *ip = foo(fc); local
26 int *ip = foo(fc); local
condition.cpp 41 float *ip; local
42 if (int *ip = ip) {
  /external/clang/test/SemaTemplate/
metafun-apply.cpp 30 apply1<add_pointer, int>::type ip = &i; variable
typename-specifier-2.cpp 16 // FIXME: if we make the declarator below a pointer (e.g., with *ip),
20 bind_metafun<add_pointer, int>::type::type ip = &i; variable
  /external/honggfuzz/linux/
pt.c 52 uint64_t ip; local
53 switch (packet->payload.ip.ipc) {
55 ip = packet->payload.ip.ip & 0xFFFF;
58 ip = packet->payload.ip.ip & 0xFFFFFFFF;
61 ip = packet->payload.ip.ip & 0xFFFFFFFFFFFF
    [all...]

Completed in 833 milliseconds

12 3 4 5 6 7 8 91011>>