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

1 2

  /external/skia/src/utils/
SkPaintFilterCanvas.cpp 43 AutoPaintFilter apf(this, kPaint_Type, paint);
44 if (apf.shouldDraw()) {
45 this->INHERITED::onDrawPaint(*apf.paint());
51 AutoPaintFilter apf(this, kPoint_Type, paint);
52 if (apf.shouldDraw()) {
53 this->INHERITED::onDrawPoints(mode, count, pts, *apf.paint());
58 AutoPaintFilter apf(this, kRect_Type, paint);
59 if (apf.shouldDraw()) {
60 this->INHERITED::onDrawRect(rect, *apf.paint());
65 AutoPaintFilter apf(this, kRRect_Type, paint)
    [all...]
  /frameworks/base/services/net/java/android/net/apf/
ApfCapabilities.java 17 package android.net.apf;
20 * APF program support capabilities.
26 * Version of APF instruction set supported for packet filtering. 0 indicates no support for
27 * packet filtering using APF programs.
32 * Maximum size of APF program allowed.
37 * Format of packets passed to APF filter. Should be one of ARPHRD_*
ApfFilter.java 17 package android.net.apf;
33 import android.net.apf.ApfGenerator;
34 import android.net.apf.ApfGenerator.IllegalInstructionException;
35 import android.net.apf.ApfGenerator.Register;
70 * For networks that support packet filtering via APF programs, {@code ApfFilter}
71 * listens for IPv6 ICMPv6 router advertisements (RAs) and generates APF programs to
75 * A collection of RAs we've received is kept in mRas. Generating APF programs uses mRas to
76 * know what RAs to filter for, thus generating APF programs is dependent on mRas.
78 * - ReceiveThread, which listens for RAs and adds them to mRas, and generates APF programs.
80 * - setMulticastFilter(), which can cause an APF program to be generated
    [all...]
ApfGenerator.java 17 package android.net.apf;
23 * APF assembler/generator. A tool for generating an APF program.
26 * {@link generate} to get the APF bytecode for the program.
317 * Number of memory slots available for access via APF stores to memory and loads from memory.
319 * the APF interpreter.
327 * the APF interpreter.
334 * executes stores to this memory slot. This must be kept in sync with the APF interpreter.
342 * executes stores to this memory slot. This must be kept in sync with the APF interpreter.
365 * Set version of APF instruction set to generate instructions for. Returns {@code true
    [all...]
  /frameworks/base/tests/net/
Android.mk 76 hardware/google/apf
  /frameworks/base/tests/net/java/android/net/apf/
Bpf2Apf.java 17 package android.net.apf;
19 import android.net.apf.ApfGenerator;
20 import android.net.apf.ApfGenerator.IllegalInstructionException;
21 import android.net.apf.ApfGenerator.Register;
27 * BPF to APF translator.
33 * javac net/java/android/net/apf/ApfGenerator.java \
34 * tests/servicestests/src/android/net/apf/Bpf2Apf.java
36 * android.net.apf.Bpf2Apf
52 * APF instruction(s) and append them to {@code gen}. Here's an example line:
306 * Convert the output of "tcpdump -d" (human readable BPF program dump) {@code bpf} into an APF
    [all...]
ApfTest.java 17 package android.net.apf;
22 import android.net.apf.ApfCapabilities;
23 import android.net.apf.ApfFilter;
24 import android.net.apf.ApfGenerator;
25 import android.net.apf.ApfGenerator.IllegalInstructionException;
26 import android.net.apf.ApfGenerator.Register;
67 * Tests for APF program generator and interpreter.
70 * runtest frameworks-net -c android.net.apf.ApfTest
81 // Load up native shared library containing APF interpreter exposed via JNI.
85 // Expected return codes from APF interpreter
    [all...]
  /external/dhcpcd-6.8.2/
ipv6.c 781 struct ipv6_addr *ap, *apn, *apf; local
804 apf = ipv6_findaddr(ap->iface->ctx,
806 if (apf && apf->iface != ap->iface &&
807 strcmp(apf->iface->name, ap->iface->name))
809 if (apf->iface->metric <= ap->iface->metric) {
810 logger(apf->iface->ctx, LOG_INFO,
814 apf->iface->name);
817 logger(apf->iface->ctx, LOG_INFO,
819 apf->iface->name
853 struct ipv6_addr *ap, *apn, *apf; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngine.cpp 593 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); local
594 (void)apf.convertFromAPInt(GV.IntVal,
597 GV.IntVal = apf.bitcastToAPInt();
608 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); local
609 (void)apf.convertFromAPInt(GV.IntVal,
612 GV.IntVal = apf.bitcastToAPInt();
625 APFloat apf = APFloat(GV.IntVal); local
628 (void)apf.convertToInteger(&v, BitWidth,
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 691 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); local
692 (void)apf.convertFromAPInt(GV.IntVal,
695 GV.IntVal = apf.bitcastToAPInt();
706 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); local
707 (void)apf.convertFromAPInt(GV.IntVal,
710 GV.IntVal = apf.bitcastToAPInt();
723 APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal); local
726 (void)apf.convertToInteger(&v, BitWidth,
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 1031 const llvm::APFloat &apf = Val.getFloat(); local
    [all...]
slang_rs_reflection.cpp 1935 const llvm::APFloat &apf = Val.getFloat(); local
    [all...]
  /external/libxml2/doc/
Makefile.am 178 tutorial/apf.html \
  /frameworks/base/services/net/java/android/net/ip/
IpManager.java 33 import android.net.apf.ApfCapabilities;
34 import android.net.apf.ApfFilter;
138 // Install an APF program to filter incoming packets.
141 // If multicast filtering cannot be accomplished with APF, this function will be called to
779 * Enable or disable the multicast filter. Attempts to use APF to accomplish the filtering,
800 pw.println(mTag + " APF dump:");
809 pw.println("Hardware does not support APF.");
811 pw.println("ApfFilter not yet started, APF capabilities: " + apfCapabilities);
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 672 APFloat apf(DestTy->getFltSemantics(),
675 apf.convertFromAPInt(api, opc==Instruction::SIToFP,
681 return ConstantFP::get(V->getContext(), apf);
    [all...]
AsmWriter.cpp 1179 APFloat apf = CFP->getValueAPF(); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AsmWriter.cpp 745 APFloat apf = CFP->getValueAPF(); local
748 apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
751 utohex_buffer(uint64_t(apf.bitcastToAPInt().getZExtValue()),
    [all...]
Constants.cpp 520 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF(); local
521 apf.changeSign();
522 return get(Context, apf);
    [all...]
ConstantFold.cpp 648 APFloat apf(APInt::getNullValue(DestTy->getPrimitiveSizeInBits()), true);
649 (void)apf.convertFromAPInt(api,
652 return ConstantFP::get(V->getContext(), apf);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNative.java 20 import android.net.apf.ApfCapabilities;
    [all...]
WifiVendorHal.java 57 import android.net.apf.ApfCapabilities;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 1030 APFloat apf = APFloat(Val); local
    [all...]
LegalizeDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiVendorHalTest.java 51 import android.net.apf.ApfCapabilities;
    [all...]

Completed in 713 milliseconds

1 2