HomeSort by relevance Sort by last modified time
    Searched defs:Patch (Results 1 - 25 of 46) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
pr12104.h 1 template <int dimm> struct Patch {
5 const unsigned int Patch<dim>::no_neighbor;
8 f(Patch<1>::no_neighbor);
  /frameworks/av/services/audioflinger/
PatchPanel.h 25 class Patch;
37 /* Create a patch between several source and sink ports */
38 status_t createAudioPatch(const struct audio_patch *patch,
41 /* Release a patch */
51 status_t createPatchConnections(Patch *patch,
53 void clearPatchConnections(Patch *patch);
55 class Patch {
57 explicit Patch(const struct audio_patch *patch)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffLib/Arm/
PeCoffLoaderEx.c 57 @param Address New addres to patch into the instruction
65 UINT16 Patch;
68 Patch = ((Address >> 12) & 0x000f); // imm4
69 Patch |= (((Address & BIT11) != 0) ? BIT10 : 0); // i
71 *(Instruction) = (*Instruction & ~0x040f) | Patch;
74 Patch = Address & 0x000000ff; // imm8
75 Patch |= ((Address << 4) & 0x00007000); // imm3
78 *Instruction = (*Instruction & ~0x70ff) | Patch;
111 @param Address New addres to patch into the instructions
  /external/libchrome/sandbox/win/src/sidestep/
preamble_patcher.h 42 // the function being patched, we cannot patch it because in the
45 // if you really really need to patch a function like this, it
48 // we cannot patch the function because it may not be long enough
49 // for the jmp instruction we use to inject our patch.
65 static SideStepError Patch(T target_function, T replacement_function,
  /frameworks/base/libs/hwui/
Patch.h 37 // 9-patch structures
40 class Patch {
42 Patch(const float bitmapWidth, const float bitmapHeight,
44 const UvMapper& mapper, const Res_png_9patch* patch);
47 * Returns the size of this patch's mesh in bytes.
69 }; // struct Patch
Patch.cpp 17 #include "Patch.h"
34 uint32_t Patch::getSize() const {
38 Patch::Patch(const float bitmapWidth, const float bitmapHeight,
39 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch)
40 : mColors(patch->getColors()) {
43 const int8_t numColors = patch->numColors;
54 uint32_t xCount = patch->numXDivs;
55 uint32_t yCount = patch->numYDivs;
63 const int32_t* xDivs = patch->getXDivs()
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
gsubr.go 291 func Patch(p *obj.Prog, to *obj.Prog) {
293 Fatalf("patch: not a branch")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
gsubr.go 291 func Patch(p *obj.Prog, to *obj.Prog) {
293 Fatalf("patch: not a branch")
  /art/compiler/optimizing/
optimizing_unit_test.h 112 // Naive patch command: apply a diff to a string.
113 inline std::string Patch(const std::string& original, const diff_t& diff) {
  /external/volley/src/test/java/com/android/volley/mock/
TestRequest.java 158 /** Test example of a PATCH request in the new style. */
159 public static class Patch extends Base {
160 public Patch() {
161 super(Method.PATCH, TEST_URL, null);
165 /** Test example of a PATCH request in the new style with a body. */
166 public static class PatchWithBody extends Patch {
  /external/skia/src/gpu/ops/
GrLatticeOp.cpp 34 Patch& patch = fPatches.push_back(); local
35 patch.fViewMatrix = viewMatrix;
36 patch.fColor = color;
37 patch.fIter = std::move(iter);
38 patch.fDst = dst;
44 this->setTransformedBounds(patch.fDst, viewMatrix, HasAABloat::kNo, IsZeroArea::kNo);
99 const Patch& patch = fPatches[i]; variable
103 bool isScaleTranslate = patch.fViewMatrix.isScaleTranslate()
    [all...]
  /external/skia/samplecode/
SamplePatch.cpp 50 class Patch {
52 Patch() { sk_bzero(fPts, sizeof(fPts)); }
53 ~Patch() {}
109 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
189 Patch* patch) {
192 patch->draw(canvas, paint, nu, nv, false, false);
194 patch->draw(canvas, paint, nu, nv, true, false);
196 patch->draw(canvas, paint, nu, nv, false, true);
198 patch->draw(canvas, paint, nu, nv, true, true)
258 Patch patch; variable
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
PeCoffLoaderEx.c 300 @param Address New addres to patch into the instruction
308 UINT16 Patch;
311 Patch = ((Address >> 12) & 0x000f); // imm4
312 Patch |= (((Address & BIT11) != 0) ? BIT10 : 0); // i
313 *Instruction = (*Instruction & ~0x040f) | Patch;
316 Patch = Address & 0x000000ff; // imm8
317 Patch |= ((Address << 4) & 0x00007000); // imm3
319 *Instruction = (*Instruction & ~0x70ff) | Patch;
351 @param Address New addres to patch into the instructions
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTFixedPoint.h 145 } Patch;
179 } Patch;
  /external/v8/src/arm/
code-stubs-arm.h 111 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/arm64/
code-stubs-arm64.h 124 // We patch the two first instructions of the stub back and forth between an
131 static void Patch(Code* stub, Mode mode) {
132 // We are going to patch the two first instructions of the stub.
  /external/v8/src/mips/
code-stubs-mips.h 142 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/mips64/
code-stubs-mips64.h 143 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/ppc/
code-stubs-ppc.h 129 static void Patch(Code* stub, Mode mode) {
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 36 toPatch []Patch
47 type Patch struct {
94 p.patch()
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 36 toPatch []Patch
47 type Patch struct {
94 p.patch()
  /external/v8/src/ia32/
code-stubs-ia32.h 172 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/s390/
code-stubs-s390.h 96 // Patch an always taken branch into a NOP branch
153 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/x64/
code-stubs-x64.h 164 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/x87/
code-stubs-x87.h 169 static void Patch(Code* stub, Mode mode) {

Completed in 849 milliseconds

1 2