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

<<11121314151617181920>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 693 const tran_low_t *ip = NULL; local
717 ip = output;
721 a1 = ip[0];
722 b1 = ip[1];
723 c1 = ip[2];
724 d1 = ip[3];
738 ip += 4;
  /external/linux-kselftest/tools/testing/selftests/x86/
test_vsyscall.c 442 unsigned long ip = ctx->uc_mcontext.gregs[REG_RIP]; local
444 if (((ip ^ 0xffffffffff600000UL) & ~0xfffUL) == 0)
  /external/lzma/C/
XzDec.c 62 UInt32 ip; member in struct:__anon28756
78 p->ip = 0;
107 p->ip = v;
124 #define CASE_BRA_CONV(isa) case XZ_ID_ ## isa: p->bufConv = isa ## _Convert(p->buf, p->bufTotal, p->ip, p->encodeMode); break;
176 p->bufConv = x86_Convert(p->buf, p->bufTotal, p->ip, &p->x86State, p->encodeMode);
186 p->ip += (UInt32)p->bufConv;
  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
ChooserDialog.cpp 152 { "_lontalk._tcp.", "LonTalk over IP (ANSI 852)", "", false },
666 url.Format( TEXT( "%s%s/" ), service->urlScheme, (const char *) p->ip.c_str() );
683 // ftp://[username[:password]@]<ip>
696 url += p->ip.c_str();
709 url.Format( TEXT( "%s%s/%s" ), service->urlScheme, (const char *) p->ip.c_str(), text );
713 url.Format( TEXT( "%s%s%s" ), service->urlScheme, (const char *) p->ip.c_str(), text );
719 url.Format( TEXT( "%s%s/%s" ), service->urlScheme, (const char *) p->ip.c_str(), text );
812 std::string ip; local
831 ip = p->ip;
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/kernel/
vc4_validate_shaders.c 46 /* Current IP being validated. */
47 uint32_t ip; member in struct:vc4_shader_validation_state
49 /* IP at the end of the BO, do not read shader[max_ip] */
183 uint64_t inst = validation_state->shader[validation_state->ip];
307 uint64_t inst = validation_state->shader[validation_state->ip];
380 uint64_t inst = validation_state->shader[validation_state->ip];
471 uint64_t inst = validation_state->shader[validation_state->ip];
546 uint64_t inst = validation_state->shader[validation_state->ip];
568 int ip)
582 validation_state->ip);
628 int ip; local
737 uint32_t ip = validation_state->ip; local
774 uint32_t ip; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_reg_allocate.cpp 328 int ip = 0; local
336 * interval extends to the end of the outermost loop. Find the ip of
353 use_ip = ip;
392 ip++;
    [all...]
  /external/mesa3d/src/mesa/main/
texparam.c 2266 GLint ip[4]; local
    [all...]
  /external/perf_data_converter/src/
perf_data_handler.cc 92 // Find the MMAP event which has ip in its address range from pid. If no
94 const PerfDataHandler::Mapping* TryLookupInPid(uint32 pid, uint64 ip) const;
96 // Find the mapping for a given ip given a pid context (in user or kernel
99 uint64 ip) const;
247 context.sample_mapping = GetMappingFromPidAndIP(pid, sample.ip());
277 context.callchain[i].ip = sample.callchain(i);
289 context.branch_stack[i].from.ip = bse.from_ip();
295 context.branch_stack[i].to.ip = bse.to_ip();
427 uint64 ip) const {
436 mmaps->Lookup(ip, &mapping)
466 VLOG(2) << "no sample mmap found for pid " << pid << " and ip " << ip; local
    [all...]
  /external/perf_data_converter/src/quipper/
perf_parser.cc 171 // previously-endian-swapped location. This used to log ip.
433 const uint64_t unmapped_event_ip = sample_info.ip();
436 // Map the event IP itself.
437 if (!MapIPAndPidAndGetNameAndOffset(sample_info.ip(), pidtid,
446 !MapCallchain(sample_info.ip(), pidtid, unmapped_event_ip,
460 bool PerfParser::MapCallchain(const uint64_t ip, const PidTid pidtid,
485 callchain->Set(i, ip);
559 uint64_t ip, PidTid pidtid, uint64_t* new_ip,
562 // Attempt to find the synthetic address of the IP sample in this order:
574 mapper->GetMappedAddressAndListIterator(ip, &mapped_addr, &ip_iter)
597 << "original address " << ip; local
    [all...]
  /external/ppp/pppd/
utils.c 124 * %q (quoted string), %t (current time) and %I (IP address) formats.
170 u_int32_t ip; local
293 ip = va_arg(args, u_int32_t);
294 ip = ntohl(ip);
295 slprintf(num, sizeof(num), "%d.%d.%d.%d", (ip >> 24) & 0xff,
296 (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff);
  /external/strace/
unwind.c 305 unw_word_t ip; local
309 if (unw_get_reg(cursor, UNW_REG_IP, &ip) < 0) {
320 if (ip >= cur_mmap_cache->start_addr &&
321 ip < cur_mmap_cache->end_addr) {
327 true_offset = ip - cur_mmap_cache->start_addr +
349 } else if (ip < cur_mmap_cache->start_addr)
358 * unw_get_reg returns IP == 0
360 if (ip)
361 error_action(data, "unexpected_backtracing_error", ip);
537 unsigned long ip)
    [all...]
  /external/syslinux/core/fs/pxe/
pxe.c 67 * Tests an IP address in _ip_ for validity; return with 0 for bad, 1 for good.
72 bool ip_ok(uint32_t ip)
74 uint8_t ip_hi = (uint8_t)ip; /* First octet of the ip address */
76 if (ip == 0xffffffff || /* Refuse the all-ones address */
87 * Take an IP address (in network byte order) in _ip_ and
89 * of the dotted quad ip string.
92 static int gendotquad(char *dst, uint32_t ip)
95 ((const uint8_t *)&ip)[0],
96 ((const uint8_t *)&ip)[1]
528 uint32_t ip = IPInfo.myip; local
    [all...]
  /external/syslinux/core/fs/xfs/
xfs_dir2.c 362 struct inode *ip; local
451 ip = xfs_new_inode(parent->fs);
463 fill_xfs_inode_pvt(parent->fs, ip, ino);
465 ip->ino = ino;
466 XFS_PVT(ip)->i_ino_blk = ino_to_bytes(parent->fs, ino) >>
468 ip->size = be64_to_cpu(ncore->di_size);
471 ip->mode = DT_DIR;
474 ip->mode = DT_REG;
476 xfs_debug("inode size %llu", ip->size);
478 ip->mode = DT_LNK
608 struct inode *ip; local
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
api.h 27 * This file is part of the lwIP TCP/IP stack.
50 /* Throughout this file, IP addresses and port numbers are expected to be in
141 struct ip_pcb *ip; member in union:netconn::__anon37138
  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_eeprom.c 648 const u16 *ip; local
652 ip = intercepts3_2;
654 ip = intercepts3;
657 vp[i] = (ip[i] * max + (100 - ip[i]) * min) / 100;
    [all...]
  /external/tcpdump/
ip.h 33 * @(#)ip.h 8.2 (Berkeley) 6/1/94
52 struct ip { struct
54 #define IP_V(ip) (((ip)->ip_vhl & 0xf0) >> 4)
55 #define IP_HL(ip) ((ip)->ip_vhl & 0x0f)
72 * Definitions for IP type of service (ip_tos)
79 * Definitions for IP precedence (also in ip_tos) (hopefully unused)
130 #define IPTS_OFLW(ip) (((ipt)->ipt_oflwflg & 0xf0) >> 4)
131 #define IPTS_FLG(ip) ((ipt)->ipt_oflwflg & 0x0f
    [all...]
print-dccp.c 24 #include "ip.h"
200 static int dccp_cksum(netdissect_options *ndo, const struct ip *ip,
203 return nextproto4_cksum(ndo, ip, (const uint8_t *)(const void *)dh, len,
266 * @len - lenght of ip packet
272 const struct ip *ip; local
282 ip = (const struct ip *)data2;
283 if (IP_V(ip) == 6
    [all...]
print-esp.c 53 #include "ip.h"
331 * decode the form: SPINUM@IP <tab> ALGONAME:0xsecret
568 (*ndo->ndo_warning)(ndo, "print_esp: can not decode IP# %s\n", spikey);
653 const struct ip *ip; local
704 ip = (const struct ip *)bp2;
705 switch (IP_V(ip)) {
726 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF)
728 len = EXTRACT_16BITS(&ip->ip_len)
    [all...]
print-udp.c 37 #include "ip.h"
142 const u_int *ip = (const u_int *)hdr; local
153 ip += 2;
171 ip += 1;
188 ND_TCHECK_32BITS(ip);
189 i2 = EXTRACT_32BITS(ip);
195 ip += optlen;
201 ND_TCHECK_32BITS(ip);
202 i2 = EXTRACT_32BITS(ip);
208 ip += extlen
374 register const struct ip *ip; local
    [all...]
  /external/webrtc/webrtc/base/
network.h 63 // important to check the return value as a IP family may not be enabled.
109 // IP address. (i.e. INADDR_ANY for IPv4 or in6addr_any for IPv6). This is
230 // based on the network's property instead of any individual IP.
300 // Returns the Network's current idea of the 'best' IP it has.
301 // Or return an unset IP if this network has no active addresses.
322 IPAddress ip() const { return GetBestIP(); } function in class:rtc::Network
324 // Adds an active IP address to this network. Does not check for duplicates.
325 void AddIP(const InterfaceAddress& ip) { ips_.push_back(ip); }
327 // Sets the network's IP address list. Returns true if new IP addresses wer
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/ns/
ns_core.h 77 size_t ip[IP_LENGTH]; member in struct:NoiseSuppressionC_
  /external/webrtc/webrtc/voice_engine/test/cmd_test/
voe_cmd_test.cc 268 char ip[64]; local
270 printf("2. Specify IP \n");
275 strcpy(ip, "127.0.0.1");
277 printf("Specify remote IP: ");
278 ASSERT_EQ(1, scanf("%s", ip));
288 printf("Set Send IP \n");
289 res = voice_channel_transport->SetSendDestination(ip, rPort);
325 res = voice_channel_transports[i]->SetSendDestination(ip, port);
  /frameworks/base/services/net/java/android/net/util/
ConnectivityPacketSummary.java 353 private static String getIpAddressString(ByteBuffer ip, int byteLength) {
354 if (ip == null || ip.remaining() < byteLength) return "invalid";
357 ip.get(bytes, 0, byteLength);
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_Lan.h 69 ipa_ip_type ip; member in struct:ipa_lan_rt_rule
313 if((tx_prop->tx[tx_index].ip == IPA_IP_v4) && (get_client_memptr(eth_client, clt_indx)->route_rule_set_v4==true)) /* for ipv4 */
336 if((tx_prop->tx[tx_index].ip == IPA_IP_v6) && (get_client_memptr(eth_client, clt_indx)->route_rule_set_v6 != 0)) /* for ipv6 */
369 /* handle eth client ip-address */
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ConnectivityListener.java 193 int ip = wifiInfo.getIpAddress(); local
194 return String.format(Locale.US, "%d.%d.%d.%d", (ip & 0xff), (ip >> 8 & 0xff),
195 (ip >> 16 & 0xff), (ip >> 24 & 0xff));

Completed in 2284 milliseconds

<<11121314151617181920>>