OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:t_array
(Results
1 - 4
of
4
) sorted by null
/external/mesa3d/src/gallium/auxiliary/vl/
vl_median_filter.c
84
struct ureg_dst *
t_array
= MALLOC(sizeof(struct ureg_dst) * num_offsets);
local
91
FREE(
t_array
);
98
FREE(
t_array
);
104
FREE(
t_array
);
112
t_array
[i] = ureg_DECL_temporary(shader);
116
*
t_array
[0..*] = vtex + offset[0..*]
117
*
t_array
[0..*] = tex(
t_array
[0..*], sampler)
118
* result = partial_bubblesort(
t_array
)[mid]
123
ureg_ADD(shader, ureg_writemask(
t_array
[i], TGSI_WRITEMASK_XY)
[
all
...]
vl_matrix_filter.c
84
struct ureg_dst *
t_array
= MALLOC(sizeof(struct ureg_dst) * num_offsets);
local
92
FREE(
t_array
);
101
t_array
[i] = ureg_DECL_temporary(shader);
106
*
t_array
[0..*] = vtex + offset[0..*]
107
*
t_array
[0..*] = tex(
t_array
[0..*], sampler)
108
* o_fragment = sum(
t_array
[0..*] * matrix_values[0..*])
113
ureg_ADD(shader, ureg_writemask(
t_array
[i], TGSI_WRITEMASK_XY),
115
ureg_MOV(shader, ureg_writemask(
t_array
[i], TGSI_WRITEMASK_ZW),
122
struct ureg_src src = is_vec_zero(offsets[i]) ? i_vtex : ureg_src(
t_array
[i])
[
all
...]
/external/v8/test/mjsunit/
external-array.js
641
var
t_array
= new constructor([1, 2, 3, 4, 5, 6]);
642
assertEquals(1, goo(
t_array
, 0));
643
assertEquals(1, goo(
t_array
, 0));
644
boo(
t_array
, 0, 13);
645
assertEquals(13, goo(
t_array
, 0));
648
boo(
t_array
, 0, 15);
649
assertEquals(15, goo(
t_array
, 0));
/external/v8/src/js/
array.js
777
var
t_array
= new InternalArray();
784
t_array
[j] = [i, a[i]];
787
t_array
.sort(function(a, b) {
790
var third_index =
t_array
[
t_array
.length >> 1][0];
[
all
...]
Completed in 250 milliseconds