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

1 2

  /external/skia/src/utils/
SkPaintFilterCanvas.cpp 45 AutoPaintFilter apf(this, kPaint_Type, paint);
46 if (apf.shouldDraw()) {
47 this->INHERITED::onDrawPaint(*apf.paint());
53 AutoPaintFilter apf(this, kPoint_Type, paint);
54 if (apf.shouldDraw()) {
55 this->INHERITED::onDrawPoints(mode, count, pts, *apf.paint());
60 AutoPaintFilter apf(this, kRect_Type, paint);
61 if (apf.shouldDraw()) {
62 this->INHERITED::onDrawRect(rect, *apf.paint());
67 AutoPaintFilter apf(this, kRRect_Type, paint)
    [all...]
  /external/skqp/src/utils/
SkPaintFilterCanvas.cpp 45 AutoPaintFilter apf(this, kPaint_Type, paint);
46 if (apf.shouldDraw()) {
47 this->INHERITED::onDrawPaint(*apf.paint());
53 AutoPaintFilter apf(this, kPoint_Type, paint);
54 if (apf.shouldDraw()) {
55 this->INHERITED::onDrawPoints(mode, count, pts, *apf.paint());
60 AutoPaintFilter apf(this, kRect_Type, paint);
61 if (apf.shouldDraw()) {
62 this->INHERITED::onDrawRect(rect, *apf.paint());
67 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_*
54 * Returns true if the APF interpreter advertises support for the data buffer access opcodes
ApfFilter.java 17 package android.net.apf;
35 import android.net.apf.ApfGenerator.IllegalInstructionException;
36 import android.net.apf.ApfGenerator.Register;
69 * For networks that support packet filtering via APF programs, {@code ApfFilter}
70 * listens for IPv6 ICMPv6 router advertisements (RAs) and generates APF programs to
74 * A collection of RAs we've received is kept in mRas. Generating APF programs uses mRas to
75 * know what RAs to filter for, thus generating APF programs is dependent on mRas.
77 * - ReceiveThread, which listens for RAs and adds them to mRas, and generates APF programs.
79 * - setMulticastFilter(), which can cause an APF program to be generated.
102 UPDATE_NEW_RA, // APF program updated for new R
    [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.
319 * Number of memory slots available for access via APF stores to memory and loads from memory.
321 * the APF interpreter.
329 * the APF interpreter.
336 * executes stores to this memory slot. This must be kept in sync with the APF interpreter.
344 * executes stores to this memory slot. This must be kept in sync with the APF interpreter.
360 // This version number syncs up with APF_VERSION in hardware/google/apf/apf_interpreter.
    [all...]
  /frameworks/base/services/net/java/android/net/ip/
IpManager.java 24 import android.net.apf.ApfCapabilities;
28 import android.net.apf.ApfCapabilities;
IpClient.java 34 import android.net.apf.ApfCapabilities;
35 import android.net.apf.ApfFilter;
175 // Install an APF program to filter incoming packets.
178 // Asynchronously read back the APF program & data buffer from the wifi driver.
184 // If multicast filtering cannot be accomplished with APF, this function will be called to
    [all...]
  /frameworks/base/tests/net/
Android.mk 83 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;
33 import android.net.apf.ApfFilter.ApfConfiguration;
34 import android.net.apf.ApfGenerator.IllegalInstructionException;
35 import android.net.apf.ApfGenerator.Register;
71 * Tests for APF program generator and interpreter.
74 * runtest frameworks-net -c android.net.apf.ApfTest
88 // Load up native shared library containing APF interpreter exposed via JNI.
92 // Expected return codes from APF interpreter.
613 // The minimum supported APF version is 2.
805 * Generate some BPF programs, translate them to APF, then run APF and BPF program
    [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 \
  /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...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 1030 APFloat apf = APFloat(Val); local
    [all...]
LegalizeDAG.cpp     [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNative.java 25 import android.net.apf.ApfCapabilities;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]

Completed in 1417 milliseconds

1 2