HomeSort by relevance Sort by last modified time
    Searched defs:def (Results 101 - 125 of 813) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/compiler/nir/
nir_lower_clip.c 126 nir_ssa_def *def = NULL; local
131 assert(!(new_def && def));
132 def = new_def;
139 if (def)
146 return def;
nir_lower_drawpixels.c 119 nir_ssa_def *def; local
128 * TEX def, texcoord, drawpix_sampler, 2D
142 def = &tex->dest.ssa;
146 /* MAD def, def, scale, bias; */
147 def = nir_ffma(b, def, get_scale(state), get_bias(state));
157 /* TEX def.xy, def.xyyy, pixelmap_sampler, 2D; */
166 tex->src[0].src = nir_src_for_ssa(nir_swizzle(b, def, swiz_xy, 2, true))
    [all...]
nir_opt_dead_cf.c 98 nir_ssa_def *def = NULL; local
104 def = phi_src->src.ssa;
107 assert(def);
109 nir_ssa_def_rewrite_uses(&phi->dest.ssa, nir_src_for_ssa(def));
166 def_not_live_out(nir_ssa_def *def, void *state)
170 return !BITSET_TEST(after->live_in, def->live_index);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_gm107.cpp 103 Value *def[4][4]; local
169 def[c][l] = bld.getSSA();
170 mov = bld.mkMov(def[c][l], tex->getDef(c));
179 u->setSrc(l, def[c][l]);
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 678 struct sh_def def = *(struct sh_def *) assem; local
680 _debug_printf( "def " );
681 dump_reg( def.reg, NULL, &di );
683 dump_cdata( def.cdata );
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 59 string def = field->DebugString(); local
60 printer->Print("// $def$\n",
61 "def", def.substr(0, def.find_first_of('\n')));
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveInterval.h 61 SlotIndex def; member in class:llvm::VNInfo
65 : copy(c), flags(0), id(i), def(d)
70 : copy(orig.copy), flags(orig.flags), id(i), def(orig.def)
77 def = src.def;
127 /// Set the "phi def" flag on this value.
218 DEF = 2,
297 VNInfo *getNextValue(SlotIndex def, MachineInstr *CopyMI,
300 new (VNInfoAllocator) VNInfo((unsigned)valnos.size(), def, CopyMI)
    [all...]
  /external/tensorflow/tensorflow/cc/profiler/
profiler_test.cc 52 GraphDef def; local
53 TF_CHECK_OK(root.ToGraphDef(&def));
55 return def;
99 GraphDef def = CreateGraphDef(); local
101 graph::SetDefaultDevice("/gpu:0", &def);
104 TF_CHECK_OK(session->Create(def));
119 Profiler profiler(def);
  /external/tensorflow/tensorflow/cc/tutorials/
example_trainer.cc 79 GraphDef def; local
80 TF_CHECK_OK(root.ToGraphDef(&def));
82 return def;
102 GraphDef def = CreateGraphDef(); local
104 graph::SetDefaultDevice(opts->use_gpu ? "/device:GPU:0" : "/cpu:0", &def);
107 TF_CHECK_OK(session->Create(def));
  /external/tensorflow/tensorflow/compiler/jit/
xla_device.cc 299 KernelDef* def = new KernelDef(*jit_def); local
300 def->set_device_type(device);
302 new kernel_factory::OpKernelRegistrar(def, "XlaDeviceDummyOp",
  /external/tensorflow/tensorflow/core/debug/
grpc_session_debug_test.cc 239 GraphDef def; local
240 test::graph::ToGraphDef(&graph, &def);
247 SetDevice(&def, a->name(), a_dev.name());
248 SetDevice(&def, b->name(), b_dev.name());
250 Status s = session->Create(def);
  /external/tensorflow/tensorflow/core/distributed_runtime/
rpcbench_test.cc 152 GraphDef def; local
153 TF_CHECK_OK(s.ToGraphDef(&def));
154 return def;
176 GraphDef def = CreateGraphDef(num_stages, width, tensor_size, local
178 graph::SetDefaultDevice(cluster->devices[0].name(), &def);
180 TF_CHECK_OK(session->Create(def));
186 strings::StrCat(def.node_size(), " nodes; ",
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_stats.cc 32 bool CreateRunMetadataNode(const string& name, NodeDef* def) {
40 def->set_name(name);
44 def->set_op(name);
293 NodeDef def; local
294 if (CreateRunMetadataNode(name, &def)) {
296 new TFGraphNode(&def, nodes_map_.size(), &nodes_map_));
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.cpp 67 OMX_PARAM_PORTDEFINITIONTYPE def; local
68 InitOMXParams(&def);
70 def.nPortIndex = 0;
71 def.eDir = OMX_DirInput;
72 def.nBufferCountMin = kNumBuffers;
73 def.nBufferCountActual = def.nBufferCountMin;
74 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t);
75 def.bEnabled = OMX_TRUE;
76 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/
SoftAMRWBEncoder.cpp 74 OMX_PARAM_PORTDEFINITIONTYPE def; local
75 InitOMXParams(&def);
77 def.nPortIndex = 0;
78 def.eDir = OMX_DirInput;
79 def.nBufferCountMin = kNumBuffers;
80 def.nBufferCountActual = def.nBufferCountMin;
81 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t);
82 def.bEnabled = OMX_TRUE;
83 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/flac/dec/
SoftFlacDecoder.cpp 67 OMX_PARAM_PORTDEFINITIONTYPE def; local
68 InitOMXParams(&def);
70 def.nPortIndex = 0;
71 def.eDir = OMX_DirInput;
72 def.nBufferCountMin = kNumInputBuffers;
73 def.nBufferCountActual = def.nBufferCountMin;
74 def.nBufferSize = 32768;
75 def.bEnabled = OMX_TRUE;
76 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.cpp 111 OMX_PARAM_PORTDEFINITIONTYPE def; local
112 InitOMXParams(&def);
115 def.nPortIndex = 0;
116 def.eDir = OMX_DirInput;
117 def.nBufferCountMin = kNumBuffers;// TODO verify that 1 is enough
118 def.nBufferCountActual = def.nBufferCountMin;
119 def.nBufferSize = kMaxInputBufferSize;
120 def.bEnabled = OMX_TRUE;
121 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 60 OMX_PARAM_PORTDEFINITIONTYPE def; local
61 InitOMXParams(&def);
63 def.nPortIndex = 0;
64 def.eDir = OMX_DirInput;
65 def.nBufferCountMin = kNumBuffers;
66 def.nBufferCountActual = def.nBufferCountMin;
67 def.nBufferSize = 8192;
68 def.bEnabled = OMX_TRUE;
69 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/gsm/dec/
SoftGSM.cpp 63 OMX_PARAM_PORTDEFINITIONTYPE def; local
64 InitOMXParams(&def);
66 def.nPortIndex = 0;
67 def.eDir = OMX_DirInput;
68 def.nBufferCountMin = kNumBuffers;
69 def.nBufferCountActual = def.nBufferCountMin;
70 def.nBufferSize = 1024 / kMSGSMFrameSize * kMSGSMFrameSize;
71 def.bEnabled = OMX_TRUE;
72 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.cpp 70 OMX_PARAM_PORTDEFINITIONTYPE def; local
71 InitOMXParams(&def);
73 def.nPortIndex = 0;
74 def.eDir = OMX_DirInput;
75 def.nBufferCountMin = kNumBuffers;
76 def.nBufferCountActual = def.nBufferCountMin;
77 def.nBufferSize = 8192;
78 def.bEnabled = OMX_TRUE;
79 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/omx/1.0/
WGraphicBufferSource.cpp 164 OMX_PARAM_PORTDEFINITIONTYPE def; local
165 InitOMXParams(&def);
166 def.nPortIndex = kPortIndexInput;
168 _params = &def;
172 inHidlBytes(&def, sizeof(def)),
186 def.nBufferCountActual,
187 def.format.video.nFrameWidth,
188 def.format.video.nFrameHeight,
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
ExtensionControllerImplTest.java 147 Object def = new Object(); local
153 .withDefault(() -> def)
160 assertEquals(def, ext.get());
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/
Android.mk 8 libmm-venc-def := -g -O3 -Dlrintf=_ffix_r
9 libmm-venc-def += -D__align=__alignx
10 libmm-venc-def += -D__alignx\(x\)=__attribute__\(\(__aligned__\(x\)\)\)
11 libmm-venc-def += -DT_ARM
12 libmm-venc-def += -Dinline=__inline
13 libmm-venc-def += -D_ANDROID_
14 libmm-venc-def += -UENABLE_DEBUG_LOW
15 libmm-venc-def += -UENABLE_DEBUG_HIGH
16 libmm-venc-def += -DENABLE_DEBUG_ERROR
17 libmm-venc-def += -UINPUT_BUFFER_LO
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
universe.go 67 def(NewTypeName(token.NoPos, nil, t.name, t))
70 def(NewTypeName(token.NoPos, nil, t.name, t))
79 def(NewTypeName(token.NoPos, nil, "error", typ))
94 def(NewConst(token.NoPos, nil, c.name, Typ[c.kind], c.val))
99 def(&Nil{object{name: "nil", typ: Typ[UntypedNil]}})
169 def(newBuiltin(id))
180 def(newBuiltin(_Assert))
181 def(newBuiltin(_Trace))
203 func def(obj Object) { func
  /prebuilts/go/linux-x86/src/go/types/
universe.go 67 def(NewTypeName(token.NoPos, nil, t.name, t))
70 def(NewTypeName(token.NoPos, nil, t.name, t))
79 def(NewTypeName(token.NoPos, nil, "error", typ))
94 def(NewConst(token.NoPos, nil, c.name, Typ[c.kind], c.val))
99 def(&Nil{object{name: "nil", typ: Typ[UntypedNil]}})
169 def(newBuiltin(id))
180 def(newBuiltin(_Assert))
181 def(newBuiltin(_Trace))
203 func def(obj Object) { func

Completed in 577 milliseconds

1 2 3 45 6 7 8 91011>>