Lines Matching +full:- +full:r

54    r=c.execute("SELECT name FROM sqlite_master WHERE type='table' AND name=?",req)
55 return(r.fetchone() != None)
125 r = conn.execute("select %s from %s where %s=?" % (key,table,keystr),(strv,))
126 result=r.fetchone()
132 r = conn.execute("select %s from %s where %s=?" % (key,table,keystr),(strv,))
133 result=r.fetchone()
142r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=?" , (kind,v…
143 result=r.fetchone()
151r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=? AND testdat…
152 result=r.fetchone()
192 if re.match(r'^.*_f64',testname):
194 if re.match(r'^.*_f32',testname):
196 if re.match(r'^.*_f16',testname):
198 if re.match(r'^.*_q31',testname):
200 if re.match(r'^.*_q15',testname):
202 if re.match(r'^.*_q7',testname):
205 if re.match(r'^.*_s8',testname):
207 if re.match(r'^.*_u8',testname):
209 if re.match(r'^.*_s16',testname):
211 if re.match(r'^.*_u16',testname):
213 if re.match(r'^.*_s32',testname):
215 if re.match(r'^.*_u32',testname):
217 if re.match(r'^.*_s64',testname):
219 if re.match(r'^.*_u64',testname):
239 testField=re.sub(r'^(.*)[:]([^:]+)(F16|F32|F64|Q31|Q15|Q7)$',r'\1',row[field])
293 return(re.sub(r'^(.+)(F64|F32|F16|Q31|Q15|Q7|U32|U16|U8|S32|S16|S8)$',r'\1',a))
325 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Pickle path")
326 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
327 #parser.add_argument('-e', action='store_true', help="Embedded test")
328 parser.add_argument('-o', nargs='?',type = str, default="reg.db", help="Regression benchmark databa…
329 parser.add_argument('-r', nargs='?',type = int, default=0, help="Run ID")
345 addToDB(args.b,args.o,root,group,args.r)