/external/skia/include/core/ |
SkPaint.h | 612 The returned SkRect will either be orig or storage, thus the caller 614 use the returned value. It is legal for orig and storage to be the same 625 @param orig geometry modified by SkPaint when drawn 629 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const { 631 SkASSERT(orig.isSorted()); 640 return orig; 644 return this->doComputeFastBounds(orig, storage, style); 649 @param orig geometry modified by SkPaint when drawn 653 const SkRect& computeFastStrokeBounds(const SkRect& orig, 655 return this->doComputeFastBounds(orig, storage, kStroke_Style) [all...] |
/external/skqp/include/core/ |
SkPaint.h | 610 The returned SkRect will either be orig or storage, thus the caller 612 use the returned value. It is legal for orig and storage to be the same 623 @param orig geometry modified by SkPaint when drawn 627 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const { 629 SkASSERT(orig.isSorted()); 638 return orig; 642 return this->doComputeFastBounds(orig, storage, style); 647 @param orig geometry modified by SkPaint when drawn 651 const SkRect& computeFastStrokeBounds(const SkRect& orig, 653 return this->doComputeFastBounds(orig, storage, kStroke_Style) [all...] |
/external/libaom/libaom/test/ |
edge_detect_test.cc | 119 int *orig = (int *)malloc(width * height * sizeof(int)); variable 121 orig[i] = brightness; 123 input_ = pad_8tap_convolve(orig, width, height, high_bd); 124 free(orig); variable 235 int *orig = (int *)malloc(width * height * sizeof(int)); local 239 orig[i + j * width] = 0; 241 orig[i + j * width] = white; 245 uint8_t *padded = pad_8tap_convolve(orig, width, height, high_bd); 246 free(orig);
|
/external/python/setuptools/setuptools/command/ |
build_py.py | 3 import distutils.command.build_py as orig 23 class build_py(orig.build_py, Mixin2to3): 34 orig.build_py.finalize_options(self) 61 self.byte_compile(orig.build_py.get_outputs(self, include_bytecode=0)) 68 return orig.build_py.__getattr__(self, attr) 74 outfile, copied = orig.build_py.build_module(self, module, module_file, 163 init_py = orig.build_py.check_package(self, package, package_dir) 188 orig.build_py.initialize_options(self) 191 res = orig.build_py.get_package_dir(self, package)
|
/art/test/909-attach-agent/src-art/ |
Main.java | 88 File orig = find(in); local 89 if (orig == null) { 94 BufferedInputStream bis = new BufferedInputStream(new FileInputStream(orig));
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
LZMATestCase.java | 47 byte[] orig; 49 orig = IOUtils.toByteArray(is); 56 Assert.assertArrayEquals(orig, uncompressed);
|
/external/libcap/progs/ |
capsh.c | 56 cap_t orig, raised_for_setpcap; local 60 * orig and it isn't until we are within the --drop code that 61 * we know what the prevailing (orig) pI value is. 63 orig = cap_get_proc(); 64 if (orig == NULL) { 69 raised_for_setpcap = cap_dup(orig); 113 if (cap_set_proc(orig) != 0) { 124 cap_free(orig); 189 * Since status is based on orig, we don't want to restore 232 * Since status is based on orig, we don't want to restor 250 cap_t orig, raised_for_chroot; local [all...] |
/external/ltp/testcases/network/xinetd/ |
xinetd_tests.sh | 75 ROD mv /etc/xinetd.conf xinetd.conf.orig 81 [ -f xinetd.conf.orig ] && \ 82 mv xinetd.conf.orig /etc/xinetd.conf
|
/external/skia/samplecode/ |
SampleFilterQuality.cpp | 58 static sk_sp<SkImage> zoom_up(SkSurface* origSurf, SkImage* orig) { 63 SkImageInfo info = SkImageInfo::MakeN32(orig->width() * D, orig->height() * D, 69 canvas->translate(-SkScalarHalf(orig->width()) * (S - D) / S, 70 -SkScalarHalf(orig->height()) * (S - D) / S); 71 canvas->drawImage(orig, 0, 0, nullptr); 76 for (int i = 1; i < orig->height(); ++i) { 78 canvas->drawLine(0, y, SkIntToScalar(orig->width()), y, paint); 80 for (int i = 1; i < orig->width(); ++i) { 82 canvas->drawLine(x, 0, x, SkIntToScalar(orig->height()), paint) [all...] |
/external/skqp/samplecode/ |
SampleFilterQuality.cpp | 58 static sk_sp<SkImage> zoom_up(SkSurface* origSurf, SkImage* orig) { 63 SkImageInfo info = SkImageInfo::MakeN32(orig->width() * D, orig->height() * D, 69 canvas->translate(-SkScalarHalf(orig->width()) * (S - D) / S, 70 -SkScalarHalf(orig->height()) * (S - D) / S); 71 canvas->drawImage(orig, 0, 0, nullptr); 76 for (int i = 1; i < orig->height(); ++i) { 78 canvas->drawLine(0, y, SkIntToScalar(orig->width()), y, paint); 80 for (int i = 1; i < orig->width(); ++i) { 82 canvas->drawLine(x, 0, x, SkIntToScalar(orig->height()), paint) [all...] |
/external/u-boot/lib/ |
gzip.c | 52 int r, flush, orig, window; local 63 orig = *lenp; 124 *lenp = orig - *lenp;
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
RGBZ.java | 160 private Bitmap setAlphaChannelFromBitmap(Bitmap depth, Bitmap orig, Bitmap dest) { 161 int w = orig.getWidth(); 162 int h = orig.getHeight(); 166 orig.getPixels(orig_data, 0, w, 0, 0, w, h);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 285 TypeBearer orig = stack[idx]; local 287 if ((orig == null) || 288 (orig.getType().getCategory() != type.getType().getCategory())) { 290 stackElementString(orig) + " -> " +
|
/external/clang/test/OpenMP/ |
declare_reduction_ast_print.c | 25 void init(struct SSS *priv, struct SSS orig);
|
declare_reduction_codegen.c | 82 void init(struct SSS *priv, struct SSS orig);
|
/external/libtextclassifier/utils/java/ |
scoped_global_ref.h | 37 GlobalRefDeleter(const GlobalRefDeleter& orig) = default; member in class:libtextclassifier3::GlobalRefDeleter
|
string_utils.h | 39 StringCharsReleaser(const StringCharsReleaser& orig) = default; member in class:libtextclassifier3::StringCharsReleaser
|
/external/openssh/regress/ |
limit-keytype.sh | 9 mv $OBJ/sshd_proxy $OBJ/sshd_proxy.orig 10 mv $OBJ/ssh_proxy $OBJ/ssh_proxy.orig 32 grep -v IdentityFile $OBJ/ssh_proxy.orig > $OBJ/ssh_proxy 43 grep -v "Protocol" $OBJ/sshd_proxy.orig
|
/external/sqlite/ |
UPDATE-SOURCE.bash | 73 for to in dist/orig/ dist/ ; do 88 echo_and_exec bash -c '(for x in orig/*; do diff -u -d $x ${x#orig/}; done) > Android.patch'
|
/external/tensorflow/tensorflow/core/util/ |
cuda_kernel_helper.h | 98 const T* orig = first; local 113 return first - orig; 118 const T* orig = first; local 133 return first - orig;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/ |
runiSACfault.txt | 28 INDIR=../data/orig 40 file_wb=../data/orig/16kHz.pcm
|
/build/kati/ |
stmt.h | 56 StringPiece orig() const { return orig_; } function in struct:Stmt 112 StringPiece orig; member in struct:CommandStmt
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NoteEditor.java | 424 Cursor orig = cr.query( local 434 if (orig != null) { 435 if (orig.moveToFirst()) { 436 int colNoteIndex = orig.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE); 437 int colTitleIndex = orig.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE); 438 text = orig.getString(colNoteIndex); 439 title = orig.getString(colTitleIndex); 443 orig.close();
|
/external/autotest/client/profilers/powertop/src/ |
Makefile | 43 rm -f *~ powertop powertop.1.gz po/powertop.pot DEADJOE svn-commit* *.o *.orig 48 rm -rf .svn po/.svn DEADJOE po/DEADJOE todo.txt Lindent svn-commit.* dogit.sh git/ *.rej *.orig
|
/external/gptfdisk/ |
mbrpart.h | 75 virtual MBRPart& operator=(const MBRPart& orig); 76 virtual MBRPart& operator=(const struct MBRRecord& orig);
|