/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_fragshader.c | 41 static void r200SetFragShaderArg( GLuint *afs_cmd, GLuint opnum, GLuint optype, in r200SetFragShaderArg() argument 108 SET_INST(opnum, optype) |= reg0; in r200SetFragShaderArg() 109 SET_INST_2(opnum, optype) |= reg2; in r200SetFragShaderArg() 141 GLuint opnum = 0; in r200UpdateFSArith() local 147 SET_INST(opnum, 0) = 0; in r200UpdateFSArith() 148 SET_INST_2(opnum, 0) = 0; in r200UpdateFSArith() 149 SET_INST(opnum, 1) = 0; in r200UpdateFSArith() 150 SET_INST_2(opnum, 1) = 0; in r200UpdateFSArith() 166 SET_INST(opnum, optype) |= R200_TXC_NEG_ARG_C; in r200UpdateFSArith() 169 r200SetFragShaderArg(afs_cmd, opnum, optype, in r200UpdateFSArith() [all …]
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | fileops.h | 26 void ffsb_readfile(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 27 void ffsb_readall(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 28 void ffsb_writefile(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 29 void ffsb_writefile_fsync(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 30 void ffsb_writeall(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 31 void ffsb_writeall_fsync(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 32 void ffsb_createfile(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 33 void ffsb_createfile_fsync(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 34 void ffsb_deletefile(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); 35 void ffsb_appendfile(ffsb_thread_t *tconfig, ffsb_fs_t *, unsigned opnum); [all …]
|
D | fileops.c | 53 void fop_bench(ffsb_fs_t * fs, unsigned opnum) in fop_bench() argument 55 fs_set_opdata(fs, fs_get_datafiles(fs), opnum); in fop_bench() 58 void fop_age(ffsb_fs_t * fs, unsigned opnum) in fop_age() argument 60 fs_set_opdata(fs, fs_get_agefiles(fs), opnum); in fop_age() 89 void ffsb_readfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_readfile() argument 91 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_readfile() 185 ft_incr_op(ft, opnum, iterations, read_size); in ffsb_readfile() 192 void ffsb_readall(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_readall() argument 194 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_readall() 214 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_readall() [all …]
|
D | metaops.c | 37 void metaops_metadir(ffsb_fs_t * fs, unsigned opnum) in metaops_metadir() argument 39 fs_set_opdata(fs, fs_get_metafiles(fs), opnum); in metaops_metadir() 85 void ffsb_metaops(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_metaops() argument 87 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_metaops() 95 ft_incr_op(ft, opnum, 1, 0); in ffsb_metaops() 98 void ffsb_createdir(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_createdir() argument 100 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_createdir() 111 ft_incr_op(ft, opnum, 1, 0); in ffsb_createdir()
|
D | ffsb_thread.c | 62 do_op(ft, params.fs, params.opnum); in ft_run() 121 void ft_incr_op(ffsb_thread_t * ft, unsigned opnum, unsigned increment, in ft_incr_op() argument 124 ft->results.ops[opnum] += increment; in ft_incr_op() 125 ft->results.op_weight[opnum]++; in ft_incr_op() 126 ft->results.bytes[opnum] += bytes; in ft_incr_op()
|
D | ffsb_tg.c | 112 params->opnum = curop; in tg_get_op() 126 int opnum = ops_find_op(opname); in tg_set_op_weight() local 127 assert(opnum >= 0); in tg_set_op_weight() 128 tg->op_weights[opnum] = weight; in tg_set_op_weight() 133 int opnum = ops_find_op(opname); in tg_get_op_weight() local 134 assert(opnum >= 0); in tg_get_op_weight() 135 return tg->op_weights[opnum]; in tg_get_op_weight()
|
D | ffsb_op.h | 47 typedef void (*ffsb_op_fs_fn)(struct ffsb_fs *, unsigned opnum); 89 char *op_get_name(int opnum);
|
D | ffsb_fs.h | 165 void fs_set_opdata(ffsb_fs_t *fs, void *data, unsigned opnum); 166 void *fs_get_opdata(ffsb_fs_t *fs, unsigned opnum);
|
D | ffsb_op.c | 147 char *op_get_name(int opnum) in op_get_name() argument 149 return ffsb_op_list[opnum].op_name; in op_get_name()
|
D | ffsb_fs.c | 542 void fs_set_opdata(ffsb_fs_t * fs, void *data, unsigned opnum) in fs_set_opdata() argument 544 fs->op_data[opnum] = data; in fs_set_opdata() 547 void *fs_get_opdata(ffsb_fs_t * fs, unsigned opnum) in fs_get_opdata() argument 549 return fs->op_data[opnum]; in fs_get_opdata()
|
D | ffsb_thread.h | 90 void ft_incr_op(ffsb_thread_t *ft, unsigned opnum, unsigned increment, uint64_t bytes);
|
D | ffsb_tg.h | 197 unsigned opnum; /* out parameter */ member
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/PerfectShuffle/ |
D | PerfectShuffle.cpp | 110 Operator(unsigned short shufflemask, const char *name, unsigned opnum, in Operator() 112 : Name(name), ShuffleMask(shufflemask), OpNum(opnum),Cost(cost) { in Operator() 303 for (unsigned opnum = 0, e = TheOperators.size(); opnum != e; ++opnum) { in main() local 304 Operator *Op = TheOperators[opnum]; in main()
|
/external/swiftshader/third_party/LLVM/utils/PerfectShuffle/ |
D | PerfectShuffle.cpp | 110 Operator(unsigned short shufflemask, const char *name, unsigned opnum, in Operator() 112 : ShuffleMask(shufflemask), OpNum(opnum), Name(name), Cost(cost) { in Operator() 303 for (unsigned opnum = 0, e = TheOperators.size(); opnum != e; ++opnum) { in main() local 304 Operator *Op = TheOperators[opnum]; in main()
|
/external/llvm/utils/PerfectShuffle/ |
D | PerfectShuffle.cpp | 110 Operator(unsigned short shufflemask, const char *name, unsigned opnum, in Operator() 112 : Name(name), ShuffleMask(shufflemask), OpNum(opnum),Cost(cost) { in Operator() 303 for (unsigned opnum = 0, e = TheOperators.size(); opnum != e; ++opnum) { in main() local 304 Operator *Op = TheOperators[opnum]; in main()
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 510 lnotab.addCode(self.opnum[opname]) 518 lnotab.addCode(self.opnum[opname], lo, hi) 521 print self.opnum[opname], lo, hi 525 opnum = {} variable in PyFlowGraph 527 opnum[dis.opname[num]] = num
|
/external/ltp/testcases/kernel/fs/fsx-linux/ |
D | fsx-linux.c | 201 int opnum; in logdump() local 203 opnum = i + 1 + (logcount / LOGSIZE) * LOGSIZE; in logdump() 205 prt("%d: %lu.%06lu ", opnum, lp->tv.tv_sec, lp->tv.tv_usec); in logdump()
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
D | TargetSelectionDAG.td | 22 class SDTypeConstraint<int opnum> { 23 int OperandNum = opnum;
|
/external/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 22 class SDTypeConstraint<int opnum> { 23 int OperandNum = opnum;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 22 class SDTypeConstraint<int opnum> { 23 int OperandNum = opnum;
|