Searched defs:component (Results 101 - 125 of 255) sorted by relevance

1234567891011

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c340 LLVMValueRef component = LLVMBuildExtractElement(builder, shifted, local
343 packed = LLVMBuildOr(builder, packed, component, "");
345 packed = component;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mc.c626 vl_mc_render_ycbcr(struct vl_mc *renderer, struct vl_mc_buffer *buffer, unsigned component, unsigned num_instances) argument
628 unsigned mask = 1 << component;
H A Dvl_video_buffer.c306 unsigned i, j, component; local
315 for (component = 0, i = 0; i < buf->num_planes; ++i ) {
322 for (j = 0; j < nr_components && component < VL_NUM_COMPONENTS; ++j, ++component) {
323 if (buf->sampler_view_components[component])
330 buf->sampler_view_components[component] = pipe->create_sampler_view(pipe, res, &sv_templ);
331 if (!buf->sampler_view_components[component])
335 assert(component == VL_NUM_COMPONENTS);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_constant_expression.cpp1116 const unsigned component = idx->value.u[0]; local
1118 return new(ctx) ir_constant(array, component);
/external/chromium_org/third_party/skia/src/core/
H A DSkMaskGamma.h27 /** Converts a color component luminance in the color space to a linear luma. */
29 /** Converts a linear luma to a color component luminance in the color space. */
216 * If APPLY_LUT is false, returns component unchanged.
217 * If APPLY_LUT is true, returns lut[component].
218 * @param APPLY_LUT whether or not the look-up table should be applied to component.
219 * @component the initial component.
220 * @lut a look-up table which transforms the component.
222 template<bool APPLY_LUT> static inline U8CPU sk_apply_lut_if(U8CPU component, const uint8_t*) { argument
223 return component;
225 sk_apply_lut_if(U8CPU component, const uint8_t* lut) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrConvolutionEffect.cpp95 const char* component = this->direction() == Gr1DKernelEffect::kY_Direction ? "y" : "x"; local
97 component, bounds, component, bounds);
/external/chromium_org/ui/events/
H A Dlatency_info.cc197 void LatencyInfo::AddLatencyNumber(LatencyComponentType component, argument
200 AddLatencyNumberWithTimestamp(component, id, component_sequence_number,
204 void LatencyInfo::AddLatencyNumberWithTimestamp(LatencyComponentType component, argument
213 if (IsBeginComponent(component)) {
214 // Should only ever add begin component once.
224 LatencyComponent component; local
228 &component) ||
231 &component)) {
240 ts = component.event_time.ToInternalValue() - diff;
255 LatencyMap::key_type key = std::make_pair(component, i
[all...]
/external/chromium_org/ui/gfx/
H A Dcolor_utils.cc52 const double component = eight_bit_component / 255.0; local
53 return (component <= 0.03928) ?
54 (component / 12.92) : pow((component + 0.055) / 1.055, 2.4);
/external/chromium_org/ui/views/window/
H A Dnon_client_view.cc274 int component; local
277 component = HTTOPLEFT;
279 component = HTBOTTOMLEFT;
281 component = HTLEFT;
284 component = HTTOPRIGHT;
286 component = HTBOTTOMRIGHT;
288 component = HTRIGHT;
291 component = HTTOPLEFT;
293 component = HTTOPRIGHT;
295 component
[all...]
/external/chromium_org/url/
H A Durl_parse_unittest.cc99 const Component& component) {
100 // If the component is nonexistant (length == -1), it should begin at 0.
101 EXPECT_TRUE(component.len >= 0 || component.len == -1);
104 EXPECT_LE(0, component.begin);
106 // A NULL reference means the component should be nonexistant.
108 return component.len == -1;
109 if (component.len < 0)
112 if (strlen(reference) != static_cast<size_t>(component.len))
116 return strncmp(reference, &input[component
97 ComponentMatches(const char* input, const char* reference, const Component& component) argument
119 ExpectInvalidComponent(const Component& component) argument
158 Parsed::ComponentType component; member in struct:url::__anon17225::CountCase
[all...]
/external/chromium_org/v8/src/
H A Dlookup.cc153 AccessorComponent component, Handle<Object> accessor,
163 name_, component, accessor, attributes);
181 // If the component and attributes are identical, nothing has to be done.
182 if (pair->get(component) == *accessor) {
186 pair->set(component, *accessor);
190 pair->set(component, *accessor);
152 TransitionToAccessorProperty( AccessorComponent component, Handle<Object> accessor, PropertyAttributes attributes) argument
/external/clang/test/CodeGen/
H A Dinit.c36 double component[3]; member in union:vec3
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DGenerateResults.java40 * in one HTML page per component.
483 * Print component PHP file
485 private void printComponent(/*PerformanceResults performanceResults, */String component) throws FileNotFoundException { argument
487 File outputFile = new File(this.outputDir, component + ".php");
491 boolean isGlobal = component.startsWith("global");
532 printComponentTitle(/*performanceResults, */component, isGlobal, stream);
537 final FingerPrint fingerprint = new FingerPrint(component, stream, this.outputDir);
550 // FingerPrint fingerprint = new FingerPrint(component, stream, this.outputDir);
555 // print the component scenario status table beneath the fingerprint
556 final ScenarioStatusTable sst = new ScenarioStatusTable(component, strea
576 printComponentTitle( String component, boolean isGlobal, PrintStream stream) argument
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java220 * Returns the array component if this type is an array. If the type
223 * @return the array component if an array, otherwise null
229 CtClass component;
231 component = this.clazz.getComponentType();
236 Type type = (Type)prims.get(component);
237 return (type != null) ? type : new Type(component);
335 String arrayName(String component, int dims) { argument
338 int i = component.length();
341 component.getChars(0, i, string, 0);
346 component
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java112 private static void verifyArrayLoad(CtClass clazz, CtMethod method, String component) argument
132 assertEquals(component + "[]", type.getCtClass().getName());
139 assertEquals(component, type.getCtClass().getName());
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c340 LLVMValueRef component = LLVMBuildExtractElement(builder, shifted, local
343 packed = LLVMBuildOr(builder, packed, component, "");
345 packed = component;
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mc.c626 vl_mc_render_ycbcr(struct vl_mc *renderer, struct vl_mc_buffer *buffer, unsigned component, unsigned num_instances) argument
628 unsigned mask = 1 << component;
H A Dvl_video_buffer.c306 unsigned i, j, component; local
315 for (component = 0, i = 0; i < buf->num_planes; ++i ) {
322 for (j = 0; j < nr_components && component < VL_NUM_COMPONENTS; ++j, ++component) {
323 if (buf->sampler_view_components[component])
330 buf->sampler_view_components[component] = pipe->create_sampler_view(pipe, res, &sv_templ);
331 if (!buf->sampler_view_components[component])
335 assert(component == VL_NUM_COMPONENTS);
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp1116 const unsigned component = idx->value.u[0]; local
1118 return new(ctx) ir_constant(array, component);
/external/proguard/src/proguard/gui/
H A DClassSpecificationDialog.java528 * given key, to the given component.
530 private static JComponent tip(JComponent component, String messageKey) argument
532 component.setToolTipText(msg(messageKey));
534 return component;
H A DMemberSpecificationDialog.java491 * given key, to the given component.
493 private static JComponent tip(JComponent component, String messageKey) argument
495 component.setToolTipText(msg(messageKey));
497 return component;
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteComponent.java21 * and provides a drawable surface with the correct animation frame to a render component each
109 // pass it off to the render component for drawing.
186 public final void setRenderComponent(RenderComponent component) { argument
187 mRenderComponent = component;
190 public final void setCollisionComponent(DynamicCollisionComponent component) { argument
191 mCollisionComponent = component;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DRobolectricPackageManager.java124 public void addActivityIcon( ComponentName component, Drawable d ) { argument
125 drawableList.put( component, d);
/external/skia/src/core/
H A DSkMaskGamma.h27 /** Converts a color component luminance in the color space to a linear luma. */
29 /** Converts a linear luma to a color component luminance in the color space. */
218 * If APPLY_LUT is false, returns component unchanged.
219 * If APPLY_LUT is true, returns lut[component].
220 * @param APPLY_LUT whether or not the look-up table should be applied to component.
221 * @component the initial component.
222 * @lut a look-up table which transforms the component.
224 template<bool APPLY_LUT> static inline U8CPU sk_apply_lut_if(U8CPU component, const uint8_t*) { argument
225 return component;
227 sk_apply_lut_if(U8CPU component, const uint8_t* lut) argument
[all...]
/external/skia/src/gpu/effects/
H A DGrConvolutionEffect.cpp92 const char* component = this->direction() == Gr1DKernelEffect::kY_Direction ? "y" : "x"; local
94 component, bounds, component, bounds);

Completed in 1065 milliseconds

1234567891011