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

1 2 3 4 5 67 8 91011>>

  /external/skqp/src/gpu/
GrDefaultGeoProcFactory.cpp 180 const DefaultGeoProc& def = gp.cast<DefaultGeoProc>(); local
181 uint32_t key = def.fFlags;
182 key |= (def.coverage() == 0xff) ? 0x10 : 0;
183 key |= (def.localCoordsWillBeRead() && def.localMatrix().hasPerspective()) ? 0x20 : 0x0;
184 key |= ComputePosKey(def.viewMatrix()) << 20;
186 if (def.linearizeColor()) {
187 b->add32(GrColorSpaceXform::XformKey(def.fColorSpaceXform.get()));
  /external/swiftshader/src/Reactor/
Optimizer.cpp 474 Ice::Inst *def = definition[address]; local
476 if(def && llvm::isa<Ice::InstAlloca>(def))
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXAsmPrinter.cpp 252 std::string def = "\t.local .align "; local
253 def += utostr(FrameInfo->getObjectAlignment(i));
254 def += " .b8";
255 def += " __local";
256 def += utostr(i);
257 def += "[";
258 def += utostr(FrameInfo->getObjectSize(i)); // Convert to bits
259 def += "]";
260 def += ";";
261 OutStreamer.EmitRawText(Twine(def));
    [all...]
  /external/tensorflow/tensorflow/c/eager/
c_api_test.cc 758 tensorflow::FunctionDef def; local
787 &def));
788 return def.SerializeAsString();
    [all...]
  /external/tensorflow/tensorflow/c/
while_loop_test.cc 119 GraphDef def; local
120 bool success = def.ParseFromArray(buf->data, buf->length);
123 return def.DebugString();
321 "Requested return tensor 'p0:0' not found in graph def");
361 "Requested return tensor 'p0:0' not found in graph def");
392 "Requested return tensor 'p0:0' not found in graph def");
  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding.cc 248 if (!FindKernelDef(DeviceType(DEVICE_CPU), n->def(), /*def=*/nullptr,
398 NodeDef def; local
399 CHECK(builder.Finalize(&def).ok());
519 NodeDef def; local
520 if (!builder.Finalize(&def).ok()) {
524 if (!FindKernelDef(device_type, def, &kdef, nullptr).ok()) {
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_test.cc 63 Status CreateSession(const GraphDef& def, string* handle,
67 *(req.mutable_graph_def()) = def;
79 Status ExtendSession(const string& handle, const GraphDef& def,
84 *(req.mutable_graph_def()) = def;
140 GraphDef def; // Empty. local
143 TF_ASSERT_OK(CreateSession(def, &handle, &initial_version));
159 GraphDef def; // Empty. local
162 TF_ASSERT_OK(CreateSession(def, &s1, &initial_version1));
163 TF_ASSERT_OK(CreateSession(def, &s2, &initial_version2));
380 GraphDef def; local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
dataset.cc 151 FunctionDefLibrary def; local
152 *def.add_function() = *f_def;
155 GradientDef* g_def = def.add_gradient();
159 TF_RETURN_IF_ERROR(b_->AddFunctionLibrary(def));
  /external/tensorflow/tensorflow/core/graph/
graph_constructor_test.cc 478 def s(t):
795 GraphDef def; local
796 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(pb_ascii, &def));
799 auto s = ImportGraphDef(opts, def, &graph_, nullptr);
893 GraphDef def; local
899 Status s = ImportGraphDef(opts, def, &graph_, nullptr);
930 &def);
934 s = ImportGraphDef(opts, def, &graph_, nullptr);
950 s = ImportGraphDef(opts, def, &graph_, nullptr);
955 s = ImportGraphDef(opts, def, &graph_, nullptr)
983 GraphDef def; local
1003 GraphDef def; local
1038 GraphDef def; local
1144 GraphDef def; local
2040 GraphDef def; local
2424 GraphDef def; local
3147 GraphDef def; local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
grappler_item_builder_test.cc 40 GraphDef *def, CollectionDef *fetches,
64 TF_CHECK_OK(scope.ToGraphDef(def));
77 std::unique_ptr<GrapplerItem> CreateGrapplerItem(const GraphDef &def,
82 *meta_def.mutable_graph_def() = def;
111 GraphDef def; local
114 SampleSumSymbolicGradientGraphdef(&def, &fetches, &ops_of_inline);
117 std::unique_ptr<GrapplerItem> with_inline = CreateGrapplerItem(def, fetches);
292 // Attr def
415 // Attr def
428 // attr def
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
remote_fused_graph_execute_utils_test.cc 41 static NodeDef* GetNodeDef(const string& name, GraphDef* def) {
42 CHECK_NE(def, nullptr);
43 for (NodeDef& node_def : *def->mutable_node()) {
225 GraphDef def; local
227 NAME_A, NODE_A_VAL, NAME_B, NODE_B_VAL, NAME_A_PLUS_B, &def));
236 def, inputs, outputs, false /* initialize_by_zero */, &output_tensors);
246 GraphDef def; local
248 NAME_A, NODE_A_VAL, NAME_B, NODE_B_VAL, NAME_A_PLUS_B, &def));
256 def, inputs, outputs, true /* initialize_by_zero */, &output_tensors);
266 GraphDef def; local
300 GraphDef def; local
343 GraphDef def; local
432 GraphDef def; local
462 GraphDef def; local
    [all...]
  /external/toybox/kconfig/
conf.c 67 static void conf_askvalue(struct symbol *sym, const char *def)
79 printf("%s\n", def);
91 printf("%s\n", def);
98 printf("%s\n", def);
107 printf("%s\n", def);
117 printf("%s\n", def);
174 const char *def, *help; local
179 def = sym_get_string_value(sym);
181 printf("[%s] ", def);
182 conf_askvalue(sym, def);
313 int cnt, def; local
    [all...]
  /frameworks/av/media/libstagefright/
MediaExtractorFactory.cpp 106 MediaExtractor::ExtractorDef def; member in struct:android::ExtractorPlugin
112 : def(definition), libHandle(handle), libPath(path) {
114 uuidString.appendFormat("%02x", def.extractor_uuid.b[i]);
119 ALOGV("closing handle for %s %d", libPath.c_str(), def.extractor_version);
151 if ((curCreator = (*it)->def.sniff(source, &newConfidence, &newMeta, &newFreeMeta))) {
176 if (plugin->def.def_version == 0
177 || plugin->def.def_version > MediaExtractor::EXTRACTORDEF_VERSION) {
178 ALOGE("don't understand extractor format %u, ignoring.", plugin->def.def_version);
181 if (memcmp(&plugin->def.extractor_uuid, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 16) == 0) {
185 if (plugin->def.extractor_name == NULL || strlen(plugin->def.extractor_name) == 0)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/
SoftAACEncoder2.cpp 81 OMX_PARAM_PORTDEFINITIONTYPE def; local
82 InitOMXParams(&def);
84 def.nPortIndex = 0;
85 def.eDir = OMX_DirInput;
86 def.nBufferCountMin = kNumBuffers;
87 def.nBufferCountActual = def.nBufferCountMin;
88 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t) * 2;
89 def.bEnabled = OMX_TRUE;
90 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/
SoftAMR.cpp 78 OMX_PARAM_PORTDEFINITIONTYPE def; local
79 InitOMXParams(&def);
81 def.nPortIndex = 0;
82 def.eDir = OMX_DirInput;
83 def.nBufferCountMin = kNumBuffers;
84 def.nBufferCountActual = def.nBufferCountMin;
85 def.nBufferSize = 8192;
86 def.bEnabled = OMX_TRUE;
87 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 402 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(kOutputPortIndex)->mDef; local
403 def->format.video.nStride = align(def->format.video.nStride, 16);
404 def->format.video.nSliceHeight = align(def->format.video.nSliceHeight, 16);
405 def->nBufferSize = (def->format.video.nStride * def->format.video.nSliceHeight * 3) / 2;
  /frameworks/av/media/libstagefright/codecs/opus/dec/
SoftOpus.cpp 83 OMX_PARAM_PORTDEFINITIONTYPE def; local
84 InitOMXParams(&def);
86 def.nPortIndex = 0;
87 def.eDir = OMX_DirInput;
88 def.nBufferCountMin = kNumBuffers;
89 def.nBufferCountActual = def.nBufferCountMin;
90 def.nBufferSize = 960 * 6;
91 def.bEnabled = OMX_TRUE;
92 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/vorbis/dec/
SoftVorbis.cpp 83 OMX_PARAM_PORTDEFINITIONTYPE def; local
84 InitOMXParams(&def);
86 def.nPortIndex = 0;
87 def.eDir = OMX_DirInput;
88 def.nBufferCountMin = kNumBuffers;
89 def.nBufferCountActual = def.nBufferCountMin;
90 def.nBufferSize = kMaxNumSamplesPerBuffer * sizeof(int16_t);
91 def.bEnabled = OMX_TRUE;
92 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 102 OMX_PARAM_PORTDEFINITIONTYPE def; local
103 InitOMXParams(&def);
105 def.nPortIndex = kInputPortIndex;
106 def.eDir = OMX_DirInput;
107 def.nBufferCountMin = numMinInputBuffers;
108 def.nBufferCountActual = numInputBuffers;
109 def.nBufferSize = inputBufferSize;
110 def.bEnabled = OMX_TRUE;
111 def.bPopulated = OMX_FALSE;
112 def.eDomain = OMX_PortDomainVideo
206 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(kOutputPortIndex)->mDef; local
247 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(kOutputPortIndex)->mDef; local
495 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(newParams->nPortIndex)->mDef; local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
IdenticalCodeFolding.cpp 145 const LDSection* def = local
151 funcptr_access_set.insert(def);
251 LDSection* def = &sym->fragRef()->frag()->getParent()->getSection(); local
252 if (def == sect) {
286 LDSection* def = &sym->fragRef()->frag()->getParent()->getSection(); local
288 KeptSections::const_iterator it = pKeptSections.find(def);
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/util/
WizardManagerHelperTest.java 232 @StyleRes int def = 123; local
233 assertEquals(def, WizardManagerHelper.getThemeRes("abracadabra", def));
238 @StyleRes int def = 123; local
239 assertEquals(def, WizardManagerHelper.getThemeRes((String) null, def));
  /hardware/intel/common/utils/ISV/omx/
isv_omxcomponent.cpp 263 OMX_PARAM_PORTDEFINITIONTYPE *def = local
267 && def->nPortIndex == kPortIndexOutput) {
268 ALOGD_IF(ISV_COMPONENT_DEBUG, "%s: orignal bufferCountActual %d, bufferCountMin %d", __func__, def->nBufferCountActual, def->nBufferCountMin);
272 OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def->format.video;
280 def->nBufferCountActual += mNumISVBuffers + 9;
281 def->nBufferCountMin += mNumISVBuffers + 9;
307 ISV_MODE* def = static_cast<ISV_MODE*>(pComponentParameterStructure); local
309 if (*def == ISV_AUTO) {
329 } else if (*def == ISV_DISABLE
345 OMX_PARAM_PORTDEFINITIONTYPE *def = local
383 UseAndroidNativeBufferParams *def = local
    [all...]
  /hardware/interfaces/media/omx/1.0/vts/functional/component/
VtsHalMediaOmxV1_0TargetComponentTest.cpp 762 OMX_PARAM_PORTDEFINITIONTYPE def; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HttpsURLConnectionTest.java 194 HostnameVerifier def = HttpsURLConnection.getDefaultHostnameVerifier(); local
200 HttpsURLConnection.setDefaultHostnameVerifier(def);
  /libcore/luni/src/test/java/tests/security/cert/
CertStore1Test.java 136 String def = "Proba.cert.store.type"; local
143 Security.setProperty("certstore.type", def);
145 assertEquals("Incorrect default type", dt, def);

Completed in 616 milliseconds

1 2 3 4 5 67 8 91011>>