/external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
amdgcn_glslc.c | 174 const char *orig = getenv(name); local 175 if (orig) { 177 (void)!asprintf(&newval, "%s,%s", orig, value);
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
u_atomic.h | 242 int32_t orig; local 249 mov [orig], eax 252 return orig;
|
/external/gptfdisk/ |
basicmbr.cc | 75 BasicMBRData & BasicMBRData::operator=(const BasicMBRData & orig) { 78 memcpy(code, orig.code, 440); 79 diskSignature = orig.diskSignature; 80 nulls = orig.nulls; 81 MBRSignature = orig.MBRSignature; 82 blockSize = orig.blockSize; 83 diskSize = orig.diskSize; 84 numHeads = orig.numHeads; 85 numSecspTrack = orig.numSecspTrack; 86 canDeleteMyDisk = orig.canDeleteMyDisk [all...] |
/external/mesa3d/src/intel/blorp/ |
blorp_blit.c | [all...] |
/bionic/tests/ |
string_test.cpp | 278 char* orig = strdup(""); local 279 ASSERT_EQ(buf, strcpy(buf, orig)); 281 free(orig); 287 char* orig = strdup("12345"); local 289 ASSERT_EQ(buf, strcpy(buf, orig)); 295 free(orig); 301 char* orig = strdup("123456789"); local 303 ASSERT_EQ(buf, strcpy(buf, orig)); 305 free(orig); 311 char* orig = strdup("") local 320 char* orig = strdup("12345"); local 334 char* orig = strdup("123456789"); local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalList.java | 829 * @param orig {@code null-ok;} the original spec 833 private static RegisterSpec filterSpec(RegisterSpec orig) { 834 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { 835 return orig.withType(Type.OBJECT); 838 return orig;
|
/dalvik/dx/src/com/android/dx/dex/code/ |
LocalList.java | 828 * @param orig {@code null-ok;} the original spec 832 private static RegisterSpec filterSpec(RegisterSpec orig) { 833 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { 834 return orig.withType(Type.OBJECT); 837 return orig;
|
/external/python/cpython2/Lib/lib-tk/test/ |
widget_tests.py | 78 orig = widget[name] 86 self.assertEqual(widget[name], orig) 88 widget[name] = orig 94 self.assertEqual(widget[name], orig) 96 widget[name] = orig
|
/external/python/cpython3/Lib/tkinter/test/ |
widget_tests.py | 74 orig = widget[name] 82 self.assertEqual(widget[name], orig) 84 widget[name] = orig 90 self.assertEqual(widget[name], orig) 92 widget[name] = orig
|
/external/skia/tests/ |
SpecialImageTest.cpp | 188 const sk_sp<SkSpecialImage>& orig, 192 REPORTER_ASSERT(reporter, gpuBacked->uniqueID() == orig->uniqueID()); 193 REPORTER_ASSERT(reporter, gpuBacked->subset().width() == orig->subset().width() && 194 gpuBacked->subset().height() == orig->subset().height()); 195 REPORTER_ASSERT(reporter, gpuBacked->getColorSpace() == orig->getColorSpace());
|
/external/skqp/tests/ |
SpecialImageTest.cpp | 188 const sk_sp<SkSpecialImage>& orig, 192 REPORTER_ASSERT(reporter, gpuBacked->uniqueID() == orig->uniqueID()); 193 REPORTER_ASSERT(reporter, gpuBacked->subset().width() == orig->subset().width() && 194 gpuBacked->subset().height() == orig->subset().height()); 195 REPORTER_ASSERT(reporter, gpuBacked->getColorSpace() == orig->getColorSpace());
|
/cts/tests/app/src/android/app/cts/ |
InstrumentationTest.java | 213 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, local 215 mInstrumentation.sendTrackballEventSync(orig); 219 assertEquals(orig.getMetaState(), motionEvent.getMetaState()); 220 assertEquals(orig.getEventTime(), motionEvent.getEventTime()); 221 assertEquals(orig.getDownTime(), motionEvent.getDownTime()); 365 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, local 367 mInstrumentation.sendPointerSync(orig);
|
/external/deqp/external/openglcts/modules/gl/ |
gl4cClipControlTests.cpp | 468 for (size_t orig = 0; orig < DE_LENGTH_OF_ARRAY(origins); orig++) 475 cc.clipControl(origins[orig], GL_NEGATIVE_ONE_TO_ONE); 483 qpTestResult loopResult = ValidateFramebuffer(m_context, origins[orig]); 1036 for (size_t orig = 0; orig < DE_LENGTH_OF_ARRAY(origins); orig++) 1045 cc.clipControl(origins[orig], GL_NEGATIVE_ONE_TO_ONE); [all...] |
/frameworks/av/media/codec2/core/include/ |
C2Param.h | 445 /// Returns managed clone of |orig| at heap. 446 inline static std::unique_ptr<C2Param> Copy(const C2Param &orig) { 447 if (orig.size() == 0) { 450 void *mem = ::operator new (orig.size()); 451 C2Param *param = new (mem) C2Param(orig.size(), orig._mIndex); 452 param->updateFrom(orig); 456 /// Returns managed clone of |orig| as a stream parameter at heap. 458 const C2Param &orig, bool output, unsigned stream) { 459 std::unique_ptr<C2Param> copy = Copy(orig); [all...] |
/external/antlr/runtime/Ruby/lib/antlr3/ |
token.rb | 134 def initialize_copy( orig ) 136 self.type = orig.type 137 self.channel = orig.channel 138 self.text = orig.text.clone if orig.text 139 self.start = orig.start 140 self.stop = orig.stop 141 self.line = orig.line 142 self.column = orig.column 143 self.input = orig.inpu [all...] |
/external/golang-protobuf/ptypes/ |
any_test.go | 43 orig := &any.Any{Value: []byte("test")} 45 packed, err := MarshalAny(orig) 47 t.Errorf("MarshalAny(%+v): got: _, %v exp: _, nil", orig, err) 52 if err != nil || !proto.Equal(unpacked, orig) { 53 t.Errorf("got: %v, %+v; want nil, %+v", err, unpacked, orig)
|
/external/python/cpython2/Lib/test/ |
test_urlparse.py | 124 for orig, expect in parse_qsl_test_cases: 125 result = urlparse.parse_qsl(orig, keep_blank_values=True) 126 self.assertEqual(result, expect, "Error parsing %r" % orig) 128 result = urlparse.parse_qsl(orig, keep_blank_values=False) 130 "Error parsing %r" % orig) 133 for orig, expect in parse_qs_test_cases: 134 result = urlparse.parse_qs(orig, keep_blank_values=True) 135 self.assertEqual(result, expect, "Error parsing %r" % orig) 138 result = urlparse.parse_qs(orig, keep_blank_values=False) 140 "Error parsing %r" % orig) [all...] |
/external/selinux/python/chcat/ |
chcat | 108 def chcat_add(orig, newcat, objects, login_ind): 128 print(_("%s is already in %s") % (f, orig)) 189 def chcat_remove(orig, newcat, objects, login_ind): 210 print(_("%s is not in %s") % (f, orig)) 220 print(_("%s is not in %s") % (f, orig))
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.c | 683 * @param orig - The instruction that is not 16-bit 686 static BOOL is16BitEquvalent(const char* orig, const char* equiv) { 690 if (orig[i] == '\0' && equiv[i] == '\0') 692 if (orig[i] == '\0' || equiv[i] == '\0') 694 if (orig[i] != equiv[i]) { 695 if ((orig[i] == 'Q' || orig[i] == 'L') && equiv[i] == 'W') 697 if ((orig[i] == '6' || orig[i] == '3') && equiv[i] == '1') 699 if ((orig[i] == '4' || orig[i] == '2') && equiv[i] == '6' [all...] |
/external/doclava/src/com/google/doclava/ |
Converter.java | 708 private static AnnotationInstanceInfo[] convertAnnotationInstances(AnnotationDesc[] orig) { 709 int len = orig.length; 712 out[i] = Converter.obtainAnnotationInstance(orig[i]); 795 Object orig = o.value(); local 797 if (orig instanceof Type) { 799 converted = Converter.obtainType((Type) orig); 800 } else if (orig instanceof FieldDoc) { 802 converted = Converter.obtainField((FieldDoc) orig); 803 } else if (orig instanceof AnnotationDesc) { 805 converted = Converter.obtainAnnotationInstance((AnnotationDesc) orig); [all...] |
/external/ipsec-tools/src/racoon/ |
remoteconf.c | 334 dupetypes(orig) 335 struct etypes *orig; 339 if (!orig) 346 new->type = orig->type; 349 if (orig->next) 350 new->next=dupetypes(orig->next);
|
/external/pdfium/core/fpdfapi/render/ |
cpdf_imagerenderer.cpp | 258 int orig = (*dest_scan - matte_b) * 255 / alpha + matte_b; local 259 *dest_scan++ = pdfium::clamp(orig, 0, 255); 260 orig = (*dest_scan - matte_g) * 255 / alpha + matte_g; 261 *dest_scan++ = pdfium::clamp(orig, 0, 255); 262 orig = (*dest_scan - matte_r) * 255 / alpha + matte_r; 263 *dest_scan++ = pdfium::clamp(orig, 0, 255);
|
/external/python/cpython3/Lib/test/ |
test_cgi.py | 176 for orig, expect in parse_strict_test_cases: 178 d = do_test(orig, "GET") 179 self.assertEqual(d, expect, "Error parsing %s method GET" % repr(orig)) 180 d = do_test(orig, "POST") 181 self.assertEqual(d, expect, "Error parsing %s method POST" % repr(orig)) 183 env = {'QUERY_STRING': orig}
|
/external/syzkaller/prog/ |
minimization_test.go | 13 orig string 105 p, err := target.Deserialize([]byte(test.orig)) 113 ti, test.orig, test.result, string(res))
|
/external/syzkaller/vendor/golang.org/x/net/idna/ |
idna.go | 318 labels := labelIter{orig: s} 505 orig string 519 return l.curStart >= len(l.orig) 526 return l.orig 533 p := strings.IndexByte(l.orig[l.curStart:], '.') 536 l.curEnd = len(l.orig) 538 return l.orig[l.curStart:l.curEnd] 546 l.curStart = len(l.orig) 550 if l.curStart == len(l.orig)-1 && l.orig[l.curStart] == '.' [all...] |