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

1 2 3

  /external/skia/src/opts/
SkBlitRow_opts_arm.h 21 extern const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[];
22 extern const SkBlitRow::Proc sk_blitrow_platform_4444_procs_arm_neon[];
31 extern const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm[];
32 extern const SkBlitRow::Proc sk_blitrow_platform_4444_procs_arm[];
SkBlitRow_opts_none.cpp 13 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) {
17 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
SkBlitRow_opts_arm.cpp 335 const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm[] = {
352 const SkBlitRow::Proc sk_blitrow_platform_4444_procs_arm[] = {
374 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) {
378 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
  /external/skia/legacy/src/core/
SkDrawProcs.h 28 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
30 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache);
34 SkDraw1Glyph::Proc fD1GProc;
SkProcSpriteBlitter.cpp 14 typedef void (*Proc)(void* dst, const void* src, int count, const SkPMColor ctable[]);
16 SkProcSpriteBlitter(const SkBitmap& source, Proc proc, unsigned srcShift, unsigned dstShift)
17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
25 Proc proc = fProc;
33 proc(dst, src, width, ctable);
43 Proc fProc;
  /external/skia/src/core/
SkDrawProcs.h 28 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
30 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache);
34 SkDraw1Glyph::Proc fD1GProc;
SkProcSpriteBlitter.cpp 14 typedef void (*Proc)(void* dst, const void* src, int count, const SkPMColor ctable[]);
16 SkProcSpriteBlitter(const SkBitmap& source, Proc proc, unsigned srcShift, unsigned dstShift)
17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
25 Proc proc = fProc;
33 proc(dst, src, width, ctable);
43 Proc fProc;
  /external/skia/legacy/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
46 static Proc Factory(unsigned flags, SkBitmap::Config);
83 static Proc PlatformProcs565(unsigned flags);
84 static Proc PlatformProcs4444(unsigned flags);
  /external/skia/legacy/src/opts/
SkBlitRow_opts_none.cpp 13 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) {
17 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
opts_check_SSE2.cpp 124 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) {
128 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
156 ColorProc proc = NULL; local
163 proc = SkARGB32_A8_BlitMask_SSE2;
170 return proc;
  /external/skia/bench/
RegionContainBench.cpp 20 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
22 Proc fProc;
37 RegionContainBench(void* param, Proc proc, const char name[]) : INHERITED(param) {
38 fProc = proc;
55 Proc proc = fProc; local
58 proc(fA, fB);
RegionBench.cpp 72 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
75 Proc fProc;
93 RegionBench(void* param, int count, Proc proc, const char name[], int mul = 1) : INHERITED(param) {
94 fProc = proc;
110 Proc proc = fProc; local
113 proc(fA, fB);
  /external/skia/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
39 static Proc Factory(unsigned flags, SkBitmap::Config);
94 static Proc PlatformProcs565(unsigned flags);
95 static Proc PlatformProcs4444(unsigned flags);
  /frameworks/base/tools/preload/
Proc.java 27 class Proc implements Serializable {
32 final Proc parent;
44 final List<Proc> children = new ArrayList<Proc>();
60 Proc(Proc parent, int id) {
155 * Prints a child proc to standard out.
159 for (Proc child : children) {
Android.mk 14 Proc.java \
Root.java 42 /** pid -> Proc */
43 final Map<Integer, Proc> processes = new HashMap<Integer, Proc>();
55 Proc process = processes.get(record.pid);
116 Proc proc = processes.get(record.pid); local
118 if (proc == null) {
120 Proc parent = processes.get(record.ppid);
121 proc = new Proc(parent, record.pid)
    [all...]
PrintPsTree.java 40 for (Proc proc : root.processes.values()) {
41 if (proc.parent == null) {
42 proc.print();
Operation.java 36 final Proc process;
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos,
WritePreloadedClassFile.java 98 for (Proc proc : root.processes.values()) {
99 if (proc.fromZygote() && !Policy.isService(proc.name)) {
100 for (Operation operation : proc.operations) {
135 for (Proc proc : root.processes.values()) {
136 if (proc.name.equals(processName)) {
137 for (Operation operation : proc.operations) {
  /external/skia/include/effects/
SkColorMatrixFilter.h 42 typedef void (*Proc)(const State&, unsigned r, unsigned g, unsigned b,
45 Proc fProc;
  /external/skia/legacy/include/effects/
SkColorMatrixFilter.h 52 typedef void (*Proc)(State*, unsigned r, unsigned g, unsigned b,
55 Proc fProc;
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 18 int proc; member in struct:bnode
31 #define Proc(x) ((x)->proc)
46 Proc(tmp) = p;
  /external/skia/include/views/
SkEvent.h 26 * the eventsink matching the target ID (if not 0), or the target proc is
34 typedef bool (*Proc)(const SkEvent& evt);
65 * the eventsink matching the targetID (if not 0), or the target proc is
75 * the eventsink matching the targetID (if not 0), or the target proc is
85 * Return the target proc, or NULL if it has none.
88 * the eventsink matching the targetID (if not 0), or the target proc is
91 Proc getTargetProc() const { return fTargetProc; }
98 * the eventsink matching the targetID (if not 0), or the target proc is
101 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /external/skia/legacy/include/views/
SkEvent.h 28 * the eventsink matching the target ID (if not 0), or the target proc is
36 typedef bool (*Proc)(const SkEvent& evt);
67 * the eventsink matching the targetID (if not 0), or the target proc is
77 * the eventsink matching the targetID (if not 0), or the target proc is
87 * Return the target proc, or NULL if it has none.
90 * the eventsink matching the targetID (if not 0), or the target proc is
93 Proc getTargetProc() const { return fTargetProc; }
100 * the eventsink matching the targetID (if not 0), or the target proc is
103 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /external/mksh/src/
jobs.c 40 typedef struct proc Proc;
41 struct proc { struct
42 Proc *next; /* next process in pipeline (if any) */
47 char command[64 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
149 static Proc *new_proc(void);
219 proc_errorlevel(Proc *p)
388 static Proc *last_proc
    [all...]

Completed in 1233 milliseconds

1 2 3