HomeSort by relevance Sort by last modified time
    Searched refs:components (Results 276 - 300 of 1210) sorted by null

<<11121314151617181920>>

  /external/skia/src/gpu/gl/
GrGLProgramDataManager.h 73 void setPathFragmentInputTransform(VaryingHandle u, int components,
  /external/skia/src/gpu/vk/
GrVkPipelineStateDataManager.h 47 void setPathFragmentInputTransform(VaryingHandle u, int components,
  /external/skqp/src/gpu/gl/
GrGLPathRendering.h 57 GrGLenum genMode, GrGLint components,
GrGLProgramDataManager.cpp 235 int components,
240 SkASSERT((components == 2 && (fragmentInput.fType == kFloat2_GrSLType ||
242 (components == 3 && (fragmentInput.fType == kFloat3_GrSLType ||
248 components,
GrGLProgramDataManager.h 73 void setPathFragmentInputTransform(VaryingHandle u, int components,
  /external/skqp/src/gpu/vk/
GrVkPipelineStateDataManager.h 47 void setPathFragmentInputTransform(VaryingHandle u, int components,
  /external/tensorflow/tensorflow/contrib/lite/
download_dependencies.sh 63 curl -Ls "${url}" | tar -C "${dir}" --strip-components=1 -xz
74 # unzip has no strip components, so unzip to a temp dir, and move the
  /external/tensorflow/tensorflow/contrib/makefile/
download_dependencies.sh 62 curl -Ls "${url}" | tar -C "${dir}" --strip-components=1 -xz
73 # unzip has no strip components, so unzip to a temp dir, and move the files
  /external/walt/ios/WALT/
WALTClient.m 555 NSArray<NSString *> *components = [responseString componentsSeparatedByString:@" "];
559 if (components.count != 5 ||
560 ![[components objectAtIndex:0] isEqualToString:@"G"] ||
561 [components objectAtIndex:1].length != 1) {
565 result.tag = [[components objectAtIndex:1] characterAtIndex:0];
567 uint64_t microseconds = atoll([components objectAtIndex:2].UTF8String);
569 result.value = (int)atoll([components objectAtIndex:3].UTF8String);
570 result.count = (unsigned int)atoll([components objectAtIndex:4].UTF8String);
  /hardware/libhardware/modules/camera/3_4/metadata/
metadata_test.cpp 56 PartialMetadataSet components; local
57 components.insert(std::move(component1_));
58 components.insert(std::move(component2_));
59 dut_.reset(new Metadata(std::move(components)));
109 // Get the expected tags = combined tags of all components.
191 // Should fail since one of the components failed.
200 // Should not try to check any components.
211 // Should check if all the components fill the template successfully.
226 // Should check if all the components fill the template successfully.
235 // Should fail since one of the components failed
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.3/
maven-antrun-plugin-1.3.jar 
  /system/core/libpixelflinger/include/pixelflinger/
format.h 123 uint16_t components; // GGLFormatComponents member in struct:__anon2847
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaPlayerStressTest.java 130 String[] components = mediaName.split(VIDEO_TOP_DIR); local
131 String key = mediaNameToKey(components[components.length -1]);
  /external/mesa3d/src/compiler/glsl/
opt_dead_code_local.cpp 238 unsigned components[4]; local
245 components[channels++] = next;
251 components,
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Path.cpp 375 // {C:/,//net/}, so get the first two components.
457 SmallVector<StringRef, 4> components;
458 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage));
459 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage));
460 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage));
461 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage));
463 for (auto &component : components) {
703 SmallVector<StringRef, 16> components;
705 // Skip the root path, then look for traversal in the components.
712 if (!components.empty() && components.back() != "..")
    [all...]
  /external/syslinux/com32/lib/jpeg/
tinyjpeg.c 557 if (Q_table >= COMPONENTS)
558 error("Bad Quantization table index (got %d, max allowed %d)\n", Q_table, COMPONENTS-1);
683 for (i=0; i<COMPONENTS; i++)
840 for (i=0; i<COMPONENTS; i++) {
841 if (priv->components[i])
842 free(priv->components[i]);
843 priv->components[i] = NULL;
874 * Note: components will be automaticaly allocated if no memory is attached.
930 pptr[0] = priv->components[0];
931 pptr[1] = priv->components[1]
    [all...]
  /external/tensorflow/tensorflow/core/kernels/data/
tensor_queue_dataset_op.cc 177 std::vector<TensorShape> max_shapes; // Of non-queue components.
510 ") must match the number of components "
551 ") must match the number of components in the input "
609 OpInputList components; variable
610 OP_REQUIRES_OK(ctx, ctx->input_list("components", &components));
611 for (int i = 0; i < components.size(); ++i) {
614 components[i].dims() > 0 && components[i].dim_size(0) == batch_size,
617 ",...], but saw shape: ", components[i].shape().DebugString()))
    [all...]
iterator_ops.cc 49 "Number of components does not match: expected ", expected.size(),
67 "Number of components does not match: expected ", expected.size(),
619 std::vector<Tensor> components;
620 components.reserve(dataset->output_dtypes().size());
624 ctx, iterator->GetNext(&iter_ctx, &components, &end_of_sequence),
629 for (int i = 0; i < components.size(); ++i) {
631 ctx->set_output(i, components[i]);
634 components.clear();
636 ctx, iterator->GetNext(&iter_ctx, &components, &end_of_sequence),
911 std::vector<Tensor> components; variable
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 542 private void propagateApplicationInfo(ApplicationInfo appInfo, ComponentInfo[] components) {
543 if (components != null) {
544 for (ComponentInfo ci : components) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
CategoryManager.java 212 final Set<ComponentName> components = new ArraySet<>(); local
219 if (components.contains(tileComponent)) {
222 components.add(tileComponent);
  /frameworks/base/services/core/java/com/android/server/notification/
ZenLog.java 212 private static String componentListToString(List<ComponentName> components) {
215 for (int i = 0; i < components.size(); ++i) {
219 stringBuilder.append(componentToString(components.get(i)));
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 21 # scaled composite components: one does scale first and then translate
197 NON_OVERLAPPING = 0x0010 # set to same value for all components (obsolete!)
260 for compo in self.components:
315 if not hasattr(self, "components"):
316 self.components = []
318 self.components.append(component)
332 for compo in self.components:
350 self.components = []
357 self.components.append(component)
463 lastcomponent = len(self.components) -
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
memory_optimizer.cc 200 // Computes the maximum topological numbers of (1) target node components
202 // components for each recomputed node. We will not attach any control
208 const std::unordered_map<const NodeDef*, int>& components) {
216 int current_target_component = components.find(output)->second;
229 // components and its own targets.
234 [&components](const NodeDef* first, const NodeDef* second) {
235 return components.find(first)->second <
236 components.find(second)->second;
268 // graph (using the component numberings in `components` and
276 const std::unordered_map<const NodeDef*, int>& components,
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
Utils.java 169 String[] components = urlArguments.split("&"); local
170 for (String component : components) {
190 List<String> components = new ArrayList<String>(); local
194 components.add(key + "=" + value);
196 return joinStrings("&", components);
  /external/clang/utils/
FindSpecRefs 202 ('7.23.1 Components of time', '338'),
483 ('20.2 Utility components', '457'),
861 components = '.'.join([str(p[0]) for p in path[1:]])
870 linkStr = '<a href="%s#page=%d">%s</a> (pg.%d)'%(docData[0],page,components,page)
872 linkStr = components
873 if section == components:
878 print >>f, '\t\t<td valign=top>%s</td>'%(components,)
    [all...]

Completed in 610 milliseconds

<<11121314151617181920>>