HomeSort by relevance Sort by last modified time
    Searched refs:IP (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/chromium_org/net/tools/flip_server/
constants.h 20 #define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
21 (((IP)>>16)&0xff), (((IP)>>24)&0xff)
  /external/clang/test/CodeGenCXX/
mangle-nullptr-arg.cpp 3 template<int *ip> struct IP {};
6 void test1(IP<nullptr>) {}
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}}
8 IP<ip> *ip2;
11 template<int &ip> struct IR {};
21 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
22 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
23 IP<nullptr> ip2;
24 IP<get_nullptr()> ip3;
25 IP<(int*)0> ip4
    [all...]
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 93 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
95 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
98 interval_part_interval_iterator I = intervals_begin(IP, false);
99 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
106 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
ScalarEvolutionExpander.cpp 30 /// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
36 BasicBlock::iterator IP) {
38 // point. It doesn't need to be the actual IP where the uses of the returned
39 // cast will be added, but it must dominate such IP.
55 // If the cast isn't where we want it, create a new cast at IP.
58 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
62 Ret = CastInst::Create(Op, V, Ty, "", IP);
74 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP);
76 // We assert at the end of the function since IP might point to a
    [all...]
  /external/chromium_org/media/cast/test/utility/
shadow.sh 43 # $ netload.py upload IP PORT
45 # The IP and PORT are printed out by this script when you run
55 IP="$(ifconfig $DEV | sed -n 's@.*inet addr:\([^ ]*\).*@\1@gp')"
71 SHADOWIP="$(echo $IP | sed 's@[^.]*$@@g')253"
79 lxc.network.ipv4.gateway = $IP
90 ifconfig $TAP1 $IP netmask $MASK broadcast $BCAST up
  /external/iproute2/examples/
gaiconf 9 IP=ip
31 run ${IP} -6 addrlabel flush
34 run ${IP} -6 addrlabel add prefix $prefix label $label
41 ${IP} -6 addrlabel list | while read p pfx l lbl; do
SYN-DoS.rate.limit 14 IP=$IPROUTE/ip/ip
35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 88 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
90 if (!IP)
96 STI, MII, Ctx, DisAsm, IP);
271 MCInstPrinter *IP = DC->getIP();
290 IP->printInst(&Inst, FormattedOS, AnnotationsStr);
316 MCInstPrinter *IP = DC->getIP();
317 IP->setUseMarkup(1);
323 MCInstPrinter *IP = DC->getIP();
324 IP->setPrintImmHex(1);
337 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter
    [all...]
Disassembler.h 74 std::unique_ptr<llvm::MCInstPrinter> IP;
93 MCInstPrinter *iP) : TripleName(tripleName),
104 IP.reset(iP);
119 MCInstPrinter *getIP() { return IP.get(); }
120 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 46 std::pair<USet::iterator, bool> IP = Set.insert(5);
47 EXPECT_TRUE(IP.second);
48 EXPECT_TRUE(IP.first == Set.begin());
62 IP = Set.insert(5);
63 EXPECT_FALSE(IP.second);
64 EXPECT_TRUE(IP.first == Set.begin());
106 std::pair<USet::iterator, bool> IP = Set.insert(3);
107 EXPECT_FALSE(IP.second);
108 EXPECT_TRUE(IP.first == Set.begin() + 1);
  /external/chromium-libpac/test/js-unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/iproute2/testsuite/lib/
generic.sh 59 $IP $@ 2> $TMP_ERR > $TMP_OUT
63 ts_err "command: $IP $@"
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) {
60 return IP->getBlockInterval(BB);
108 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) {
109 OrigContainer = &IP;
110 if (!ProcessInterval(IP.getRootInterval())) {
249 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) {
250 return interval_part_interval_iterator(IP, DeleteIntervals);
253 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) {
  /art/runtime/arch/arm/
registers_arm.h 45 IP = 12,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_variable.c 130 var->Inst->IP, reader->Inst->IP, src_type, new_index, new_writemask);
150 unsigned int start = var->Inst->IP;
155 unsigned int chan_end = var->Readers[i].Inst->IP;
167 if (var->Readers[i].Inst->IP < start) {
170 chan_start = bgnloop->IP;
200 if (bgnloop->IP < chan_start) {
201 chan_start = bgnloop->IP;
206 if (endloop->IP > chan_end) {
207 chan_end = endloop->IP;
    [all...]
radeon_program.h 148 unsigned int IP;
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 391 BasicBlock::iterator IP = F.getEntryBlock().begin();
392 IRBuilder<> AtEntry(IP->getParent(), IP);
397 while (isa<AllocaInst>(IP)) ++IP;
398 AtEntry.SetInsertPoint(IP->getParent(), IP);
421 while (isa<StoreInst>(IP)) ++IP;
422 AtEntry.SetInsertPoint(IP->getParent(), IP)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 130 var->Inst->IP, reader->Inst->IP, src_type, new_index, new_writemask);
150 unsigned int start = var->Inst->IP;
155 unsigned int chan_end = var->Readers[i].Inst->IP;
167 if (var->Readers[i].Inst->IP < start) {
170 chan_start = bgnloop->IP;
200 if (bgnloop->IP < chan_start) {
201 chan_start = bgnloop->IP;
206 if (endloop->IP > chan_end) {
207 chan_end = endloop->IP;
    [all...]
  /art/compiler/optimizing/
code_generator_arm.cc 247 blocked_registers[IP] = true;
274 __ LoadFromOffset(kLoadWord, IP, TR, Thread::StackEndOffset<kArmWordSize>().Int32Value());
275 __ cmp(SP, ShifterOperand(IP));
278 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
279 __ ldr(IP, Address(IP, 0));
383 __ ldr(IP, Address(SP, source.GetStackIndex()));
384 __ str(IP, Address(SP, destination.GetStackIndex()));
447 __ ldr(IP, Address(SP, source.GetStackIndex()));
448 __ str(IP, Address(SP, destination.GetStackIndex()))
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.cc     [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_pack_invert.spec 45 IP Status
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
106 template<int *ip> struct IP { }; // expected-note{{declared here}}
107 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
  /external/mesa3d/docs/
MESA_pack_invert.spec 45 IP Status

Completed in 1402 milliseconds

1 2 3 4 5 6