Searched refs:span (Results 1 - 25 of 402) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dspan.cc34 #include "span.h"
45 void Event(Span* span, char op, int v = 0) { argument
46 span->history[span->nexthistory] = op;
47 span->value[span->nexthistory] = v;
48 span->nexthistory++;
49 if (span->nexthistory == sizeof(span->history)) span
64 DeleteSpan(Span* span) argument
77 DLL_Remove(Span* span) argument
92 DLL_Prepend(Span* list, Span* span) argument
[all...]
H A Dpage_heap.cc77 // If we're lucky, ll is non-empty, meaning it has a suitable span.
82 // Alternatively, maybe there's a usable returned span.
111 // find the best span (closest to n in size).
116 for (Span* span = large_.normal.next;
117 span != &large_.normal;
118 span = span->next) {
119 if (span->length >= n) {
121 || (span->length < best->length)
122 || ((span
146 Split(Span* span, Length n) argument
164 CommitSpan(Span* span) argument
170 DecommitSpan(Span* span) argument
176 Carve(Span* span, Length n) argument
217 Delete(Span* span) argument
234 MergeIntoFreeList(Span* span) argument
302 PrependToFreeList(Span* span) argument
314 RemoveFromFreeList(Span* span) argument
394 RegisterSizeClass(Span* span, size_t sc) argument
428 Span* span = reinterpret_cast<Span*>(pagemap_.Next(start)); local
504 Span* span = NewSpan(p, ask); local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dspan.cc34 #include "span.h"
45 void Event(Span* span, char op, int v = 0) { argument
46 span->history[span->nexthistory] = op;
47 span->value[span->nexthistory] = v;
48 span->nexthistory++;
49 if (span->nexthistory == sizeof(span->history)) span
64 DeleteSpan(Span* span) argument
77 DLL_Remove(Span* span) argument
92 DLL_Prepend(Span* list, Span* span) argument
[all...]
H A Dpage_heap.cc77 // If we're lucky, ll is non-empty, meaning it has a suitable span.
82 // Alternatively, maybe there's a usable returned span.
110 // find the best span (closest to n in size).
115 for (Span* span = large_.normal.next;
116 span != &large_.normal;
117 span = span->next) {
118 if (span->length >= n) {
120 || (span->length < best->length)
121 || ((span
145 Split(Span* span, Length n) argument
163 Carve(Span* span, Length n) argument
186 Delete(Span* span) argument
202 MergeIntoFreeList(Span* span) argument
241 PrependToFreeList(Span* span) argument
253 RemoveFromFreeList(Span* span) argument
333 RegisterSizeClass(Span* span, size_t sc) argument
367 Span* span = reinterpret_cast<Span*>(pagemap_.Next(start)); local
442 Span* span = NewSpan(p, ask); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_atifragshader.h35 _swrast_exec_fragment_shader( struct gl_context *ctx, SWspan *span );
H A Ds_texcombine.h35 _swrast_texture_span( struct gl_context *ctx, SWspan *span );
H A Ds_span.c59 * Set default fragment attributes for the span using the
64 _swrast_span_default_attribs(struct gl_context *ctx, SWspan *span) argument
71 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
75 span->z = (GLint)tmpf;
77 span->zStep = 0;
78 span->interpMask |= SPAN_Z;
82 span->attrStart[FRAG_ATTRIB_WPOS][3] = 1.0;
83 span->attrStepX[FRAG_ATTRIB_WPOS][3] = 0.0;
84 span->attrStepY[FRAG_ATTRIB_WPOS][3] = 0.0;
92 span
171 interpolate_active_attribs(struct gl_context *ctx, SWspan *span, GLbitfield64 attrMask) argument
219 interpolate_int_colors(struct gl_context *ctx, SWspan *span) argument
319 interpolate_float_colors(SWspan *span) argument
470 interpolate_texcoords(struct gl_context *ctx, SWspan *span) argument
622 interpolate_wpos(struct gl_context *ctx, SWspan *span) argument
656 stipple_polygon_span(struct gl_context *ctx, SWspan *span) argument
831 add_specular(struct gl_context *ctx, SWspan *span) argument
880 apply_aa_coverage(SWspan *span) argument
914 clamp_colors(SWspan *span) argument
935 convert_color_type(SWspan *span, GLenum newType, GLuint output) argument
975 shade_texture_span(struct gl_context *ctx, SWspan *span) argument
1130 _swrast_write_rgba_span( struct gl_context *ctx, SWspan *span) argument
1571 _swrast_get_dest_rgba(struct gl_context *ctx, struct gl_renderbuffer *rb, SWspan *span) argument
[all...]
H A Ds_points.c86 SWspan span; local
96 span.z = FloatToFixed(vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
98 span.z = (GLuint) (vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
99 span.zStep = 0;
103 /* span init */
104 INIT_SPAN(span, GL_POINT);
105 span.interpMask = SPAN_Z | SPAN_RGBA;
107 span.facing = swrast->PointLineFacing;
109 span.red = ChanToFixed(vert->color[0]);
110 span
246 SWspan span; local
366 SWspan span; local
460 SWspan *span = &(swrast->PointSpan); local
[all...]
H A Ds_alpha.h36 _swrast_alpha_test( const struct gl_context *ctx, SWspan *span );
H A Ds_linetemp.h69 SWspan span; local
225 span.red = ChanToFixed(vert0->color[0]);
226 span.green = ChanToFixed(vert0->color[1]);
227 span.blue = ChanToFixed(vert0->color[2]);
228 span.alpha = ChanToFixed(vert0->color[3]);
229 span.redStep = (ChanToFixed(vert1->color[0]) - span.red ) / numPixels;
230 span.greenStep = (ChanToFixed(vert1->color[1]) - span.green) / numPixels;
231 span
[all...]
H A Ds_bitmap.c56 SWspan span; local
72 INIT_SPAN(span, GL_BITMAP);
73 span.end = width;
74 span.arrayMask = SPAN_XY;
75 _swrast_span_default_attribs(ctx, &span);
86 span.array->x[count] = px + col;
87 span.array->y[count] = py + row;
108 span.array->x[count] = px + col;
109 span.array->y[count] = py + row;
127 /* flush the span */
[all...]
H A Ds_depth.h38 _swrast_depth_test_span( struct gl_context *ctx, SWspan *span);
41 _swrast_depth_clamp_span( struct gl_context *ctx, SWspan *span );
44 _swrast_depth_bounds_test( struct gl_context *ctx, SWspan *span );
/external/mesa3d/src/mesa/swrast/
H A Ds_atifragshader.h35 _swrast_exec_fragment_shader( struct gl_context *ctx, SWspan *span );
H A Ds_texcombine.h35 _swrast_texture_span( struct gl_context *ctx, SWspan *span );
H A Ds_span.c59 * Set default fragment attributes for the span using the
64 _swrast_span_default_attribs(struct gl_context *ctx, SWspan *span) argument
71 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
75 span->z = (GLint)tmpf;
77 span->zStep = 0;
78 span->interpMask |= SPAN_Z;
82 span->attrStart[FRAG_ATTRIB_WPOS][3] = 1.0;
83 span->attrStepX[FRAG_ATTRIB_WPOS][3] = 0.0;
84 span->attrStepY[FRAG_ATTRIB_WPOS][3] = 0.0;
92 span
171 interpolate_active_attribs(struct gl_context *ctx, SWspan *span, GLbitfield64 attrMask) argument
219 interpolate_int_colors(struct gl_context *ctx, SWspan *span) argument
319 interpolate_float_colors(SWspan *span) argument
470 interpolate_texcoords(struct gl_context *ctx, SWspan *span) argument
622 interpolate_wpos(struct gl_context *ctx, SWspan *span) argument
656 stipple_polygon_span(struct gl_context *ctx, SWspan *span) argument
831 add_specular(struct gl_context *ctx, SWspan *span) argument
880 apply_aa_coverage(SWspan *span) argument
914 clamp_colors(SWspan *span) argument
935 convert_color_type(SWspan *span, GLenum newType, GLuint output) argument
975 shade_texture_span(struct gl_context *ctx, SWspan *span) argument
1130 _swrast_write_rgba_span( struct gl_context *ctx, SWspan *span) argument
1571 _swrast_get_dest_rgba(struct gl_context *ctx, struct gl_renderbuffer *rb, SWspan *span) argument
[all...]
H A Ds_points.c86 SWspan span; local
96 span.z = FloatToFixed(vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
98 span.z = (GLuint) (vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
99 span.zStep = 0;
103 /* span init */
104 INIT_SPAN(span, GL_POINT);
105 span.interpMask = SPAN_Z | SPAN_RGBA;
107 span.facing = swrast->PointLineFacing;
109 span.red = ChanToFixed(vert->color[0]);
110 span
246 SWspan span; local
366 SWspan span; local
460 SWspan *span = &(swrast->PointSpan); local
[all...]
H A Ds_alpha.h36 _swrast_alpha_test( const struct gl_context *ctx, SWspan *span );
H A Ds_linetemp.h69 SWspan span; local
225 span.red = ChanToFixed(vert0->color[0]);
226 span.green = ChanToFixed(vert0->color[1]);
227 span.blue = ChanToFixed(vert0->color[2]);
228 span.alpha = ChanToFixed(vert0->color[3]);
229 span.redStep = (ChanToFixed(vert1->color[0]) - span.red ) / numPixels;
230 span.greenStep = (ChanToFixed(vert1->color[1]) - span.green) / numPixels;
231 span
[all...]
H A Ds_bitmap.c56 SWspan span; local
72 INIT_SPAN(span, GL_BITMAP);
73 span.end = width;
74 span.arrayMask = SPAN_XY;
75 _swrast_span_default_attribs(ctx, &span);
86 span.array->x[count] = px + col;
87 span.array->y[count] = py + row;
108 span.array->x[count] = px + col;
109 span.array->y[count] = py + row;
127 /* flush the span */
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A Dxm_tri.c67 #define RENDER_SPAN( span ) { \
68 GLint x = span.x, y = YFLIP(xrb, span.y); \
70 for (i = 0; i < span.end; i++, x++) { \
71 const DEPTH_TYPE z = FixedToDepth(span.z); \
74 PACK_TRUECOLOR(p, FixedToInt(span.red), \
75 FixedToInt(span.green), FixedToInt(span.blue)); \
79 span.red += span
[all...]
/external/mesa3d/src/mesa/drivers/x11/
H A Dxm_tri.c67 #define RENDER_SPAN( span ) { \
68 GLint x = span.x, y = YFLIP(xrb, span.y); \
70 for (i = 0; i < span.end; i++, x++) { \
71 const DEPTH_TYPE z = FixedToDepth(span.z); \
74 PACK_TRUECOLOR(p, FixedToInt(span.red), \
75 FixedToInt(span.green), FixedToInt(span.blue)); \
79 span.red += span
[all...]
/external/chromium_org/content/test/data/dom_storage/
H A Dcommon.js6 var span = document.createElement("span");
7 span.appendChild(document.createTextNode(message));
8 span.appendChild(document.createElement("br"));
9 document.getElementById('status').appendChild(span);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.c748 * Each span keeps track of:
749 * - Associated bytecode (bytecode that depends on the span length)
763 * order (e.g. increasing offset order). Each span keeps track of the next
764 * offset-setter following the span's associated bytecode.
779 * TIMES: Handled separately from bytecode "raw" size. If not span-dependent,
781 * dependent times update on any change (span ID 0). If the resultant
796 * - times values (with span-dependent values) assumed to be 0
797 * b. Iterate over spans. Set span length based on bytecode offsets
798 * determined in 1a. If span is "certainly" long because the span
835 yasm_span *span; /* span this term is a member of */ member in struct:yasm_span_term
882 yasm_span *span; /* used only for check_cycle */ member in struct:optimize_data
890 yasm_span *span = yasm_xmalloc(sizeof(yasm_span)); local
919 yasm_span *span; local
928 yasm_span *span = d; local
951 span_create_terms(yasm_span *span) argument
1008 recalc_normal_span(yasm_span *span) argument
1091 span_destroy( yasm_span *span) argument
1134 optimize_itree_add(IntervalTree *itree, yasm_span *span, yasm_span_term *term) argument
1242 yasm_span *span = term->span; local
1289 yasm_span *span, *span_temp; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dspannable.js57 * Adds a span to some region of the string.
69 throw new RangeError('span out of range (start=' + start +
76 * Removes a span.
97 other.spans_.forEach(goog.bind(function(span) {
99 span.value,
100 span.start + originalLength,
101 span.end + originalLength);
116 var span = this.spans_[i];
117 if (span.start <= position && position < span
[all...]
/external/chromium_org/chrome/browser/resources/extensions/
H A Dextension_code.js53 var span = document.createElement('span');
54 span.textContent = emptyMessage;
55 sourceDiv.appendChild(span);
62 var span = document.createElement('span');
63 span.className = isHighlighted ? 'extension-code-highlighted-source' :
65 span.textContent = source;
66 return span;
86 var span
[all...]

Completed in 256 milliseconds

1234567891011>>