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

1 2 3 4 5 67 8 91011>>

  /external/syzkaller/sys/syz-extract/
netbsd.go 89 for orig, compats := range compatNames {
91 if undeclared[orig] && !undeclared[compat] {
92 res[orig] = res[compat]
94 delete(undeclared, orig)
  /external/tensorflow/tensorflow/core/framework/
op_def_builder.cc 36 string AttrError(StringPiece orig, const string& op_name) {
37 return strings::StrCat(" from Attr(\"", orig, "\") for Op ", op_name);
108 strings::StrCat(__VA_ARGS__, AttrError(orig, op_def->name()))); \
149 StringPiece orig(spec);
269 string InOutError(bool is_output, StringPiece orig, const string& op_name) {
270 return strings::StrCat(" from ", is_output ? "Output" : "Input", "(\"", orig,
331 __VA_ARGS__, InOutError(is_output, orig, op_def->name()))); \
341 StringPiece orig(spec);
420 string ControlOutError(StringPiece orig, const string& op_name) {
421 return strings::StrCat(" from ControlOutput(\"", orig, "\") for Op "
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
constant_op_eager_test.py 70 orig = [-1.0, 2.0, 0.0]
71 tf_ans = constant_op.constant(orig)
73 self.assertAllClose(np.array(orig), tf_ans.numpy())
76 orig = [-1.5, 2, 0]
77 tf_ans = constant_op.constant(orig)
79 self.assertAllClose(np.array(orig), tf_ans.numpy())
81 orig = [-5, 2.5, 0]
82 tf_ans = constant_op.constant(orig)
84 self.assertAllClose(np.array(orig), tf_ans.numpy())
87 orig = [1, 2**42, 0.5
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACfault.txt 14 INDIR=../data/orig
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3368/drivers/soc/
soc.c 103 uint32_t tmp, orig; local
105 orig = mmio_read_32(addr);
107 tmp = orig & ~(mask << shift);
110 if (tmp != orig)
  /external/gptfdisk/
gptpart.h 89 GPTPart & operator=(const GPTPart & orig);
mbr.cc 34 MBRData & MBRData::operator=(const MBRData & orig) {
35 BasicMBRData::operator=(orig);
40 MBRData & MBRData::operator=(const BasicMBRData & orig) {
41 BasicMBRData::operator=(orig);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 520 TypeBearer orig = type; local
523 if (orig instanceof Type) {
524 newType = (Type) orig;
526 newType = orig.getType();
533 if (newType == orig) {
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 544 TypeBearer orig = type; local
547 if (orig instanceof Type) {
548 newType = (Type) orig;
550 newType = orig.getType();
557 if (newType == orig) {
  /external/autotest/client/site_tests/platform_EncryptedStateful/
platform_EncryptedStateful.py 209 orig = os.statvfs(self.stateful)
225 file_blocks_used = float((megs * 1024 * 1024) / orig.f_frsize)
226 fs_blocks_used = float(orig.f_bfree - filled.f_bfree)
232 fs_blocks_done = float(orig.f_bfree - done.f_bfree)
237 orig.f_bfree, filled.f_bfree, done.f_bfree))
  /external/autotest/tko/parsers/test/
scenario_base.py 52 def __init__(self, orig):
55 orig: Exception; To copy
57 self.classname = orig.__class__.__name__
59 for key, val in orig.__dict__.iteritems():
87 def __init__(self, orig):
91 by introspecting orig.
94 orig: testobj; Framework test result instance to copy.
96 for key, val in orig.__dict__.iteritems():
  /external/libxml2/
entities.c 129 if ((entity->orig != NULL) && (!xmlDictOwns(dict, entity->orig)))
130 xmlFree((char *) entity->orig);
142 if (entity->orig != NULL)
143 xmlFree((char *) entity->orig);
198 ret->orig = NULL;
935 if (ent->orig != NULL)
936 cur->orig = xmlStrdup(ent->orig);
1014 if (ent->orig != NULL
    [all...]
  /external/libnetfilter_conntrack/src/conntrack/
snprintf_default.c 17 l3proto2str[ct->head.orig.l3protonum] == NULL ?
18 "unknown" : l3proto2str[ct->head.orig.l3protonum],
19 ct->head.orig.l3protonum));
27 proto2str[ct->head.orig.protonum] == NULL ?
28 "unknown" : proto2str[ct->head.orig.protonum],
29 ct->head.orig.protonum));
399 ret = __snprintf_address(buf+offset, len, &ct->head.orig,
403 ret = __snprintf_proto(buf+offset, len, &ct->head.orig);
407 ret = __snprintf_tuple_zone(buf+offset, len, "orig", &ct->head.orig);
    [all...]
  /external/python/cpython2/Lib/test/
test_cgi.py 131 for orig, expect in parse_strict_test_cases:
133 d = do_test(orig, "GET")
134 self.assertEqual(d, expect, "Error parsing %s" % repr(orig))
135 d = do_test(orig, "POST")
136 self.assertEqual(d, expect, "Error parsing %s" % repr(orig))
138 env = {'QUERY_STRING': orig}
test_bytes.py 705 orig = b'hello'
706 a = bytearray(orig)
708 self.assertEqual(a, orig + orig)
709 self.assertEqual(a[5:], orig)
712 a.extend(map(ord, orig * 25))
713 a.extend(ord(x) for x in orig * 25)
714 self.assertEqual(a, orig * 50)
715 self.assertEqual(a[-5:], orig)
717 a.extend(iter(map(ord, orig * 50))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveInterval.h 68 /// VNInfo construtor, copies values from orig, except for the value number.
69 VNInfo(unsigned i, const VNInfo &orig)
70 : copy(orig.copy), flags(orig.flags), id(i), def(orig.def)
307 VNInfo *createValueCopy(const VNInfo *orig,
310 new (VNInfoAllocator) VNInfo((unsigned)valnos.size(), *orig);
  /external/syzkaller/vendor/golang.org/x/oauth2/
transport.go 81 func (t *Transport) setModReq(orig, mod *http.Request) {
88 delete(t.modReq, orig)
90 t.modReq[orig] = mod
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bytes.py 710 orig = b'hello'
711 a = bytearray(orig)
713 self.assertEqual(a, orig + orig)
714 self.assertEqual(a[5:], orig)
717 a.extend(map(ord, orig * 25))
718 a.extend(ord(x) for x in orig * 25)
719 self.assertEqual(a, orig * 50)
720 self.assertEqual(a[-5:], orig)
722 a.extend(iter(map(ord, orig * 50)))
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageItemInfoTest.java 109 public MockPackageItemInfo(PackageItemInfo orig) {
110 super(orig);
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/
FramedSnappyTestCase.java 92 try (FileInputStream orig = new FileInputStream(original)) {
94 IOUtils.toByteArray(orig));
  /external/e2fsprogs/util/
gen-tarball.in 24 tarout="e2fsprogs_@E2FSPROGS_PKGVER@.orig.tar.gz"
36 (cd $top_srcdir/.. ; find $base_e2fsprogs \( -name \*~ -o -name \*.orig \
  /external/libvpx/libvpx/tools/
tiny_ssim.c 31 static uint64_t calc_plane_error16(uint16_t *orig, int orig_stride,
37 if (orig == NULL || recon == NULL) {
44 diff = orig[col] - recon[col];
48 orig += orig_stride;
55 static uint64_t calc_plane_error(uint8_t *orig, int orig_stride, uint8_t *recon,
61 if (orig == NULL || recon == NULL) {
68 diff = orig[col] - recon[col];
72 orig += orig_stride;
  /external/libxml2/include/libxml/
catalog.h 80 const xmlChar *orig,
134 const xmlChar *orig,
  /external/ltp/testcases/kernel/device-drivers/zram/
zram03.c 200 static void print_mm_stat(char *orig, char *compr, char *mem, char *zero)
207 tst_resm(TINFO, "%s from %s is %s", orig, PATH_ZRAM_MM_STAT,
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_nir_lower_tg4_to_tex.c 83 nir_ssa_def *orig = nir_ssa_for_src( local
86 nir_src_for_ssa(nir_iadd(b, orig, offset));

Completed in 1066 milliseconds

1 2 3 4 5 67 8 91011>>