HomeSort by relevance Sort by last modified time
    Searched refs:orig (Results 126 - 150 of 473) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/compiler/glsl/
opt_function_inlining.cpp 39 ir_variable *orig,
330 * Replaces references to the "orig" variable with a clone of "repl."
340 ir_variable_replacement_visitor(ir_variable *orig, ir_dereference *repl)
342 this->orig = orig;
358 ir_variable *orig; member in class:ir_variable_replacement_visitor
366 if (deref_var && deref_var->var == this->orig) {
424 ir_variable *orig,
427 ir_variable_replacement_visitor v(orig, repl);
  /external/python/mock/tools/
applypatch-transform 26 cp $patch_path $patch_path.orig
  /external/python/setuptools/setuptools/command/
build_clib.py 1 import distutils.command.build_clib as orig
7 class build_clib(orig.build_clib):
sdist.py 2 import distutils.command.sdist as orig
24 class sdist(sdist_add_defaults, orig.sdist):
63 orig.sdist.initialize_options(self)
78 orig.sdist.make_distribution(self)
107 orig.sdist.read_template(self)
158 orig.sdist.make_release_tree(self, base_dir, files)
  /external/skia/gm/
showmiplevels.cpp 119 static void DrawAndFrame(SkCanvas* canvas, const SkBitmap& orig, SkScalar x, SkScalar y) {
121 sk_tool_utils::copy_to(&bm, orig.colorType(), orig);
161 void drawSet(SkCanvas* canvas, const SkBitmap& orig) {
164 drawLevels(canvas, orig, [](const SkPixmap& prev, const SkPixmap& curr) {
269 void drawSet(SkCanvas* canvas, const SkBitmap& orig) {
278 copy_to(&bm, ctype, orig);
280 canvas->translate(orig.width()/2 + 8.0f, 0);
coloremoji_blendmodes.cpp 53 sk_sp<SkTypeface> orig(sk_tool_utils::create_portable_typeface("serif",
55 if (nullptr == orig) {
56 orig = SkTypeface::MakeDefault();
  /external/skqp/gm/
showmiplevels.cpp 119 static void DrawAndFrame(SkCanvas* canvas, const SkBitmap& orig, SkScalar x, SkScalar y) {
121 sk_tool_utils::copy_to(&bm, orig.colorType(), orig);
161 void drawSet(SkCanvas* canvas, const SkBitmap& orig) {
164 drawLevels(canvas, orig, [](const SkPixmap& prev, const SkPixmap& curr) {
269 void drawSet(SkCanvas* canvas, const SkBitmap& orig) {
278 copy_to(&bm, ctype, orig);
280 canvas->translate(orig.width()/2 + 8.0f, 0);
coloremoji_blendmodes.cpp 53 sk_sp<SkTypeface> orig(sk_tool_utils::create_portable_typeface("serif",
55 if (nullptr == orig) {
56 orig = SkTypeface::MakeDefault();
  /external/syzkaller/sys/syz-extract/
freebsd.go 71 for orig, compats := range compatNames {
73 if undeclared[orig] && !undeclared[compat] {
74 res[orig] = res[compat]
76 delete(undeclared, orig)
  /external/u-boot/lib/
membuff.c 295 char *orig = str; local
314 *orig = '\0';
328 int size, orig; local
333 for (orig = mb->end - mb->start, size = orig; size < orig + by;)
337 by = size - orig;
353 memmove(mb->tail + by, mb->tail, orig - oldtail);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACPLC.txt 9 INDIR=../data/orig
  /external/e2fsprogs/lib/ext2fs/
irel_ma.c 31 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
153 * Force the orig field to the correct value; the application
157 ent->orig = old;
159 ent->orig = ma->entries[(unsigned) old].orig;
176 ma->orig_map[(unsigned) ent->orig] = old;
194 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
201 if (orig > ma->max_inode)
203 ino = ma->orig_map[(unsigned) orig];
325 ma->orig_map[ma->entries[new].orig] = new
    [all...]
  /external/gptfdisk/
gptpart.cc 270 GPTPart & GPTPart::operator=(const GPTPart & orig) {
271 partitionType = orig.partitionType;
272 uniqueGUID = orig.uniqueGUID;
273 firstLBA = orig.firstLBA;
274 lastLBA = orig.lastLBA;
275 attributes = orig.attributes;
276 memcpy(name, orig.name, NAME_SIZE * sizeof( name[ 0 ] ) );
  /external/libnetfilter_conntrack/src/conntrack/
setter.c 43 ct->head.orig.src.v4 = *((uint32_t *) value);
49 ct->head.orig.dst.v4 = *((uint32_t *) value);
67 memcpy(&ct->head.orig.src.v6, value, sizeof(uint32_t)*4);
73 memcpy(&ct->head.orig.dst.v6, value, sizeof(uint32_t)*4);
91 ct->head.orig.l4src.all = *((uint16_t *) value);
97 ct->head.orig.l4dst.all = *((uint16_t *) value);
115 ct->head.orig.zone = *((uint16_t *) value);
129 ct->head.orig.l4dst.icmp.type = *((uint8_t *) value);
131 switch(ct->head.orig.l3protonum) {
154 ct->head.orig.l4dst.icmp.code = *((uint8_t *) value)
    [all...]
  /art/runtime/
image-inl.h 94 ArtMethod* orig = imt->Get(i, pointer_size); local
95 ArtMethod* updated = visitor(orig);
96 if (updated != orig) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_userstring.py 93 orig = string.ascii_letters + string.digits
99 s = self.type2test(orig)
100 L = list(orig)
test_cgi.py 124 for orig, expect in parse_strict_test_cases:
126 d = do_test(orig, "GET")
127 self.assertEqual(d, expect, "Error parsing %s" % repr(orig))
128 d = do_test(orig, "POST")
129 self.assertEqual(d, expect, "Error parsing %s" % repr(orig))
131 env = {'QUERY_STRING': orig}
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 137 byte[] orig = this.getEncoded();
138 byte[] tmp = replaceTagNumber(derTagNo, orig);
140 if ((orig[0] & BERTags.CONSTRUCTED) != 0)
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 139 byte[] orig = this.getEncoded();
140 byte[] tmp = replaceTagNumber(derTagNo, orig);
142 if ((orig[0] & BERTags.CONSTRUCTED) != 0)
  /external/python/cpython2/Lib/test/
test_userstring.py 90 orig = string.ascii_letters + string.digits
96 s = self.type2test(orig)
97 L = list(orig)
  /external/skia/tests/
TextBlobCacheTest.cpp 97 sk_sp<SkTypeface> orig(set->createTypeface(j));
99 font.setTypeface(orig);
101 font.setTypeface(sk_make_sp<SkRandomTypeface>(orig, SkPaint(), true));
  /external/skqp/tests/
TextBlobCacheTest.cpp 97 sk_sp<SkTypeface> orig(set->createTypeface(j));
99 font.setTypeface(orig);
101 font.setTypeface(sk_make_sp<SkRandomTypeface>(orig, SkPaint(), true));
  /external/vboot_reference/tests/
run_vbutil_kernel_arg_tests.sh 173 orig=$(cat "${CONFIG}" | tr '\012' ' ')
177 if [ "$orig" != "$packed" ]; then
187 if [ "$orig" != "$packed" ]; then
  /external/skia/platform_tools/android/bin/
android_gdb_app 58 ${ANDROID_TOOLCHAIN}/host_prebuilt/bin/gdb-orig -x $GDBSETUP
  /external/skqp/platform_tools/android/bin/
android_gdb_app 58 ${ANDROID_TOOLCHAIN}/host_prebuilt/bin/gdb-orig -x $GDBSETUP

Completed in 856 milliseconds

1 2 3 4 56 7 8 91011>>