HomeSort by relevance Sort by last modified time
    Searched refs:components (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /external/mesa3d/src/glsl/
opt_structure_splitting.cpp 27 * If a structure is only ever referenced by its components, then
28 * split those components out to individual variables so they can be
55 this->components = NULL;
66 ir_variable **components; member in class:variable_entry2
157 /* We'll split copies of a structure to copies of components, so don't
237 *deref = new(entry->mem_ctx) ir_dereference_variable(entry->components[i]);
270 new_lhs = new(mem_ctx) ir_dereference_variable(lhs_entry->components[i]);
278 new_rhs = new(mem_ctx) ir_dereference_variable(rhs_entry->components[i]);
328 * components.
336 entry->components = hieralloc_array(mem_ctx
    [all...]
  /external/skia/src/animator/
SkAnimateBase.h 26 virtual int components();
32 int entries() { return fValues.count() / components(); }
SkAnimateActive.cpp 173 int count = animate->components();
211 int count = animate->components();
303 int components = animate->components(); local
305 SkOperand* to = &from[animate->components()];
306 existingValues.setCount(components);
311 for (int cIndex = 0; cIndex < components; cIndex++) {
323 fInterpolators[index]->reset(components, 2, SkType_Float);
377 int components = animate->components(); local
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 252 // components: The number of components per value. Valid values are 1-4.
261 int components,
276 int components,
282 // The components parameter specifies how many elements per variable should
283 // be assigned (The variable must be able to fit the number of components).
290 int components);
297 int components);
415 int components; member in struct:android::filterfw::ShaderProgram::VertexAttrib
473 int components,
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
glUtils.cpp 370 int components = 0; local
411 components = 1;
414 components = 2;
420 components = 3;
424 components = 4;
428 components = 0;
430 pixelsize = components * componentsize;
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HullCollisionShape.java 89 int components = mesh.getVertexCount() * 3; local
90 float[] pointsArray = new float[components];
91 for (int i = 0; i < components; i += 3) {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
HullCollisionShape.java 70 int components = mesh.getVertexCount() * 3; local
71 float[] pointsArray = new float[components];
72 for (int i = 0; i < components; i += 3) {
  /external/webkit/Tools/Scripts/webkitpy/common/config/
committervalidator.py 45 components = __file__.split(os.sep)
46 tools_index = components.index("Tools")
47 return os.sep.join(components[:tools_index])
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
PackageManagerSettingsTests.java 185 HashSet<String> components = new HashSet<String>(); local
187 components.add(component1);
188 ps.setDisabledComponents(components, 0);
196 // User 1 should not have any disabled components
200 ps.setEnabledComponents(components, 1);
  /external/chromium/googleurl/src/
url_canon_ip.cc 60 url_parse::Component components[4]) {
71 components[cur_component] =
78 // Don't allow empty components (two dots in a row), except we may
102 // Fill in any unused components.
104 components[cur_component++] = url_parse::Component();
116 // out any input that is greater than 7 bits. The components are assumed
210 // The identified components. Not all may exist.
211 url_parse::Component components[4]; local
212 if (!FindIPv4Components(spec, host, components))
215 // Convert existing components to digits. Values up t
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 606 for (int comp = 0; comp < vb.components; comp++){
613 for (int comp = 0; comp < vb.components; comp++){
621 for (int comp = 0; comp < vb.components; comp++){
628 for (int comp = 0; comp < vb.components; comp++){
634 for (int comp = 0; comp < vb.components; comp++){
648 //vb.setupData(vb.usage, vb.components, vb.format, null);
895 * @param components Number of components
902 public void setBuffer(Type type, int components, Format format, Buffer buf){
906 vb.setupData(Usage.Dynamic, components, format, buf)
    [all...]
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 91 RGB Color R, G, B components
92 RGBA Color R, G, B, A components
93 BGRA Color B, G, R, A components
94 ABGR_EXT Color A, B, G, R components
95 CMYK_EXT Color Cyan, Magenta, Yellow, Black components
96 CMYKA_EXT Color Cyan, Magenta, Yellow, Black, A components
98 LUMINANCE_ALPHA Color Luminance, A components
195 reference 4 tables of color components: PIXEL_MAP_I_TO_R,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
PerformanceResultsElement.java 84 String[] components = DB_Results.getComponents(); local
85 int length = components.length;
88 components = DB_Results.getComponents();
90 return components;
133 String[] components = getComponents(); local
134 int length = components.length;
137 elements[i] = new ComponentResultsElement(components[i], this);
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 589 List<CharMatcher> components;
591 And(List<CharMatcher> components) {
592 this.components = components; // Skip defensive copy (private)
596 for (CharMatcher matcher : components) {
605 List<CharMatcher> newComponents = new ArrayList<CharMatcher>(components);
619 List<CharMatcher> components;
621 Or(List<CharMatcher> components) {
622 this.components = components; // Skip defensive copy (private
    [all...]
  /external/chromium/chrome/browser/extensions/
file_manager_util.cc 84 std::vector<FilePath::StringType> components; local
86 root_path.GetComponents(&components);
87 if (!components.size()) {
95 FilePath relative_path(components[components.size() - 1]);
  /build/tools/
adbs 101 components = func_regexp.match(func_name)
102 if components is None:
104 return components.group(2)
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWin.cpp 488 CGFloat components[4]; local
489 value.getRGBA(components[0], components[1], components[2], components[3]);
492 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreate(colorSpace.get(), components));
516 CGFloat components[4]; local
517 value.getRGBA(components[0], components[1], components[2], components[3])
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 625 CGFloat components[4];
626 value.getRGBA(components[0], components[1], components[2], components[3]);
629 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreate(colorSpace.get(), components));
655 CGFloat components[4];
656 value.getRGBA(components[0], components[1], components[2], components[3])
    [all...]
  /hardware/ril/mock-ril/src/js/
ctrl_server.js 118 // For other commands, we need to dispatch to the corresponding components
126 for(i = 0; i < entry.components.length; i++) {
127 entry.components[i].add(req);
147 * the corresponding components.
150 * and contains an array of components this request
155 * ctrlServerDispatchTable[CTRL_CMD_xxx].components = Array of components
161 'components' : [simulatedRadioWorker],
165 'components' : [simulatedRadioWorker],
169 'components' : [simulatedRadioWorker]
    [all...]
  /external/jhead/
exif.c 514 int Tag, Format, Components;
522 Components = Get32u(DirEntry+4);
530 if ((unsigned)Components > 0x10000){
531 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
535 ByteCount = Components * BytesPerFormat[Format];
627 // Extract useful components of tag
    [all...]
  /external/chromium/base/
version_unittest.cc 47 EXPECT_EQ(cases[i].parts, vers->components().size());
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder_unittest.cc 35 std::vector<StringPiece> components; local
36 Tokenize(escaped_word, StringPiece("/"), &components);
37 for (size_t i = 0; i < components.size(); ++i) {
39 components[i].size());
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv4.js 19 // If there are not enough components, the last one should fill them out.
29 // Too many components means not an IP address.
  /frameworks/native/include/ui/
PixelFormat.h 79 enum { // components
115 uint8_t components; member in struct:android::PixelFormatInfo
  /external/chromium/base/files/
file_path_watcher_mac.cc 31 // to path components. Unfortunately FSEvents appears to have an issue where the
150 std::vector<FilePath::StringType> components; local
151 path.GetComponents(&components);
153 if (components.size() < 1) {
160 for(std::vector<FilePath::StringType>::iterator i = components.begin();
161 i != components.end(); ++i) {
162 if (i == components.begin()) {
176 FilePath::StringType subdir = (i != (components.end() - 1)) ? *(i + 1) : "";
299 // Then check to see if new components in the path have been created.
300 // Repeat until no new components in the path are detected
    [all...]

Completed in 1640 milliseconds

12 3 4 5 6 7