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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/
version.py 3 patch = '275480' variable
  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.cpp 26 Res_png_9patch* patch = (Res_png_9patch*) data; local
27 size_t patchSize = patch->serializedSize();
33 memcpy(patchNew, patch, patchSize);
NinePatch.cpp 18 #define LOG_TAG "9patch"
44 * IMPORTANT NOTE: 9patch chunks can be manipuated either as an array of bytes
46 * array required to hold a 9patch chunk is greater than sizeof(Res_png_9patch).
85 int8_t* patch = reinterpret_cast<int8_t*>(patchHandle); local
87 Res_png_9patch* p = (Res_png_9patch*) patch;
90 delete[] patch;
  /development/vndk/tools/definition-tool/tests/
compat.py 45 from unittest.mock import patch
49 def patch(target, mock): function
  /external/bsdiff/
patch_writer_unittest.cc 50 // This patch writer doesn't use the |new_size| value passed on init, so we
62 test_utils::BsdiffPatchFile patch; local
63 EXPECT_TRUE(patch.LoadFromFile(patch_file_.filename()));
64 EXPECT_TRUE(patch.IsValid());
67 EXPECT_EQ(sizeof(kCompressedEmpty), static_cast<uint64_t>(patch.diff_len));
68 EXPECT_EQ(sizeof(kCompressedEmpty), patch.extra_len);
79 test_utils::BsdiffPatchFile patch; local
80 EXPECT_TRUE(patch.LoadFromFile(patch_file_.filename()));
81 EXPECT_TRUE(patch.IsValid());
82 EXPECT_EQ(patch.bz2_diff
101 test_utils::BsdiffPatchFile patch; local
    [all...]
  /external/tensorflow/tensorflow/core/util/
semver_test.cc 52 uint64 major, minor, patch; local
61 // the patch version number. Let that slide.
70 ASSERT_TRUE(str_util::ConsumeLeadingDigits(&semver, &patch));
  /external/mesa3d/src/glx/apple/
apple_glx.c 101 int major, minor, patch; local
106 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
  /external/mesa3d/src/mapi/
entry_x86_tls.h 87 char patch[8] = { local
93 *((unsigned long *) (patch + 2)) = x86_current_tls();
96 memcpy(entry, patch, sizeof(patch));
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPatch.cpp 29 AudioPatch::AudioPatch(const struct audio_patch *patch, uid_t uid) :
31 mPatch(*patch),
43 snprintf(buffer, SIZE, "%*sAudio patch %d:\n", spaces, "", index+1);
87 const sp<AudioPatch>& patch)
92 ALOGW("addAudioPatch() patch %d already in", handle);
95 add(handle, patch);
98 handle, patch->mAfPatchHandle, patch->mPatch.num_sources, patch->mPatch.num_sinks,
99 patch->mPatch.sources[0].id, patch->mPatch.sinks[0].id)
134 const sp<AudioPatch> patch = valueAt(patchIndex); local
    [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_version.h 55 Uint8 patch; /**< update version */ member in struct:SDL_version
83 (x)->patch = SDL_PATCHLEVEL; \
124 * compiled.major, compiled.minor, compiled.patch);
126 * linked.major, linked.minor, linked.patch);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_version.h 55 Uint8 patch; /**< update version */ member in struct:SDL_version
83 (x)->patch = SDL_PATCHLEVEL; \
124 * compiled.major, compiled.minor, compiled.patch);
126 * linked.major, linked.minor, linked.patch);
  /prebuilts/misc/windows/sdl2/include/
SDL_version.h 55 Uint8 patch; /**< update version */ member in struct:SDL_version
83 (x)->patch = SDL_PATCHLEVEL; \
124 * compiled.major, compiled.minor, compiled.patch);
126 * linked.major, linked.minor, linked.patch);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_version.h 55 Uint8 patch; /**< update version */ member in struct:SDL_version
83 (x)->patch = SDL_PATCHLEVEL; \
124 * compiled.major, compiled.minor, compiled.patch);
126 * linked.major, linked.minor, linked.patch);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_s390.cc 125 unsigned int major, minor, patch = 0; local
137 patch = internal_simple_strtoll(ptr+1, &ptr, 10);
143 if (minor == 2 && patch >= 79)
146 if (minor == 12 && patch >= 58)
152 if (minor == 1 && patch >= 21)
155 if (minor == 4 && patch >= 6)
  /external/freetype/builds/
toplevel.mk 190 patch := $(subst |,$(space),$(work)) macro
191 patch := $(firstword $(patch)) macro
193 ifneq ($(findstring x0x,x$(patch)x),)
197 version := $(major).$(minor).$(patch)
198 winversion := $(major)$(minor)$(patch)
  /frameworks/base/libs/hwui/
ResourceCache.cpp 143 int8_t* patch = (int8_t*)resource; local
144 delete[] patch;
  /external/autotest/tko/
models.py 81 """Compute a hash given the base string and hashes for each patch.
85 patch of this kernel.
305 class patch(object): class in inherits:object
306 """Represents a patch."""
  /external/autotest/tko/parsers/
version_0.py 196 elif head == "PATCH":
197 patches.append(patch(*rest))
226 class patch(models.patch): class in inherits:models.patch
228 tko_utils.dprint("PATCH::%s %s %s" % (spec, reference, hash))
229 super(patch, self).__init__(spec, reference, hash)
version_1.py 53 patches = [patch(*p.split()) for p in patches]
227 while ('patch%d' % patch_index) in fields:
228 patches.append(fields['patch%d' % patch_index])
239 patch = version_0.patch variable
  /external/curl/lib/
version.c 96 unsigned int patch = brotli_version & 0x00000FFF; local
98 return snprintf(buf, bufsz, "%u.%u.%u", major, minor, patch);
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_screen.c 644 unsigned patch = 0; /* assume the worst */ local
645 val = (patch & 0xff) | ((minor & 0xff) << 8) |
664 * send a patch ;-)
  /external/perfetto/src/tracing/core/
trace_writer_impl.cc 138 // write, upon Finalize(), its size into the patch list.
148 Patch* patch = patch_list_.emplace_back(cur_chunk_id, offset); local
149 nested_msg->set_size_field(&patch->size_field[0]);
153 // patch list.
156 [cur_hdr](const Patch& p) { return &p.size_field[0] == cur_hdr; });
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
asm.go 108 // Labels are function scoped. Patch existing labels and
110 p.patch()
434 p.toPatch = append(p.toPatch, Patch{prog, target.Sym.Name})
456 func (p *Parser) patch() { func
457 for _, patch := range p.toPatch {
458 targetProg := p.labels[patch.label]
460 p.errorf("undefined label %s", patch.label)
463 p.branch(patch.prog, targetProg)
  /prebuilts/go/darwin-x86/src/regexp/syntax/
compile.go 29 func (l patchList) patch(p *Prog, val uint32) { func
84 f.out.patch(c.p, c.inst(InstMatch).i)
206 f1.out.patch(c.p, f2.i)
251 f1.out.patch(c.p, f.i)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
asm.go 108 // Labels are function scoped. Patch existing labels and
110 p.patch()
434 p.toPatch = append(p.toPatch, Patch{prog, target.Sym.Name})
456 func (p *Parser) patch() { func
457 for _, patch := range p.toPatch {
458 targetProg := p.labels[patch.label]
460 p.errorf("undefined label %s", patch.label)
463 p.branch(patch.prog, targetProg)

Completed in 266 milliseconds

1 2 3 4 5 6 7 8 91011>>