Searched refs:block (Results 26 - 50 of 1927) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2010-06-17-asmcrash.c9 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
12 :"+g"(h), "+S"(pixels), "+D"(block)
H A Dblockwithlocalstatic.c5 int (^block)(void) = ^ {
/external/clang/test/Index/
H A Dtargeted-cursor.m.h4 -(void)mm:(void (^)(I*))block;
/external/eigen/doc/snippets/
H A DMatrixBase_block_int_int.cpp3 cout << "Here is m.block<2,2>(1,1):" << endl << m.block<2,2>(1,1) << endl;
4 m.block<2,2>(1,1).setZero();
H A DMatrixBase_block_int_int_int_int.cpp3 cout << "Here is m.block(1, 1, 2, 2):" << endl << m.block(1, 1, 2, 2) << endl;
4 m.block(1, 1, 2, 2).setZero();
H A DMatrixBase_setIdentity.cpp2 m.block<3,3>(1,0).setIdentity();
H A DMatrixBase_fixedBlock_int_int.cpp3 cout << "Here is m.fixed<2, 2>(2, 2):" << endl << m.block<2, 2>(2, 2) << endl;
4 m.block<2, 2>(2, 0) = m.block<2, 2>(2, 2);
/external/valgrind/main/memcheck/tests/
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dencode.h30 const int16_t *block, /* (i) speech vector to encode */
/external/chromium_org/tools/idl_parser/test_parser/
H A Dinline_ppapi.idl37 This is my block of C code
44 This is my block of CC code
/external/ceres-solver/internal/ceres/
H A Dresidual_block_utils.h55 void InvalidateEvaluation(const ResidualBlock& block,
62 bool IsEvaluationValid(const ResidualBlock& block,
68 // Create a string representation of the Residual block containing the
71 string EvaluationToString(const ResidualBlock& block,
/external/clang/test/SemaCXX/
H A Dprintf-block.cpp3 int (^block) (int, const char *,...) __attribute__((__format__(__printf__,2,3))) = ^ __attribute__((__format__(__printf__,2,3))) (int arg, const char *format,...) {return 5;};
16 block(n, "%s %d", str, n); // no-warning
17 block(n, "%s %s", hncs, n); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected type from format string was 'char *'}} expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopy.c27 void (^block)(void) = ^{ ++i; };
28 //printf("original (old style) is %s\n", _Block_dump_old(block));
29 //printf("original (new style) is %s\n", _Block_dump(block));
30 void (^blockcopy)(void) = Block_copy(block);
33 callVoidVoid(block);
H A Drdar6414583.c22 dispatch_block_t block = Block_copy(^{ c = i; }); local
24 block();
27 Block_release(block);
/external/libpcap/
H A Dgencode.h211 struct slist *jt; /*only for relative jump in block*/
212 struct slist *jf; /*only for relative jump in block*/
244 struct block *succ;
245 struct block *pred;
249 struct block { struct
261 struct block *head;
262 struct block *link; /* link field used by optimizer */
274 struct block *b; /* protocol checks */
292 void gen_and(struct block *, struct block *);
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-sce.cc12 // For each loop block walk the dominator tree from the backwards branch to
17 HBasicBlock* block = graph()->blocks()->at(i); local
18 if (block->IsLoopHeader()) {
19 HBasicBlock* back_edge = block->loop_information()->GetLastBackEdge();
24 block->loop_information()->stack_check()->Eliminate();
30 if (dominator == block) break;
H A Dhydrogen-mark-unreachable.cc19 HBasicBlock* block = blocks->at(i); local
20 if (!block->IsReachable()) continue;
21 bool is_reachable = blocks->at(0) == block;
22 for (HPredecessorIterator it(block); !it.Done(); it.Advance()) {
24 // A block is reachable if one of its predecessors is reachable,
26 // block or has a control flow instruction for which the next block
32 if (!known_pred_succ || pred_succ == block) {
37 if (block->is_osr_entry()) {
42 block
[all...]
/external/valgrind/main/none/tests/arm/
H A Dvcvt_fixed_float_VFP.c57 double block[2]; local
58 memset(block, 0x55, sizeof(block));
65 : : /*IN*/"r"(&block[0]), "r"(x) : /*TRASH*/"r8","s28","d14","memory"
67 return block[0];
72 double block[2]; local
73 memset(block, 0x55, sizeof(block));
80 : : /*IN*/"r"(&block[0]), "r"(x) : /*TRASH*/"r8","s28","d14","memory"
82 return block[
97 double block[2]; local
112 double block[2]; local
137 double block[5]; local
152 double block[5]; local
177 double block[5]; local
192 double block[5]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface_base.cpp69 {% block constructor_getter %}{% endblock %}
75 {% block replaceable_attribute_setter_and_callback %}{% endblock %}
76 {% block security_check_functions %}{% endblock %}
105 {% block origin_safe_method_setter %}{% endblock %}
110 {% block overloaded_constructor %}{% endblock %}
111 {% block event_constructor %}{% endblock %}
113 {% block indexed_property_getter %}{% endblock %}
114 {% block indexed_property_getter_callback %}{% endblock %}
115 {% block indexed_property_setter %}{% endblock %}
116 {% block indexed_property_setter_callbac
[all...]
/external/qemu/android/utils/
H A Dsystem.c26 void* block; local
31 block = malloc(size);
32 if (block != NULL)
33 return block;
43 void* block; local
48 block = calloc(1, size);
49 if (block != NULL)
50 return block;
58 android_realloc( void* block, size_t size ) argument
63 free(block);
102 void* block = _android_array_alloc(itemSize, count); local
108 _android_array_realloc( void* block, size_t itemSize, size_t count ) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dschedule.h31 // Possible control nodes that can end a block.
34 kGoto, // Goto a single successor block.
40 int32_t rpo_number_; // special RPO number of the block.
41 BasicBlock* dominator_; // Immediate dominator of the block.
42 BasicBlock* loop_header_; // Pointer to dominating loop header basic block,
46 int32_t loop_end_; // end of the loop, if this block is a loop header.
49 bool deferred_; // {true} if this block is considered the slow
51 Control control_; // Control at the end of the block.
53 NodeVector nodes_; // nodes of this block in forward order.
69 inline bool LoopContains(BasicBlockData* block) cons
169 BasicBlock* block(Node* node) const { function in class:v8::internal::compiler::Schedule
194 BasicBlock* block = this->block(a); local
200 BasicBlock* block = local
208 PlanNode(BasicBlock* block, Node* node) argument
218 AddNode(BasicBlock* block, Node* node) argument
229 AddGoto(BasicBlock* block, BasicBlock* succ) argument
236 AddBranch(BasicBlock* block, Node* branch, BasicBlock* tblock, BasicBlock* fblock) argument
251 AddReturn(BasicBlock* block, Node* input) argument
263 AddThrow(BasicBlock* block, Node* input) argument
273 AddSuccessor(BasicBlock* block, BasicBlock* succ) argument
282 SetControlInput(BasicBlock* block, Node* node) argument
287 SetBlockForNode(BasicBlock* block, Node* node) argument
[all...]
/external/fsck_msdos/
H A Dboot.c55 u_char block[DOSBOOTBLOCKSIZE]; local
60 if (read(dosfs, block, sizeof block) < sizeof block) {
61 perror("could not read boot block");
65 if (block[510] != 0x55 || block[511] != 0xaa) {
66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[51
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_etc_tmp.h84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src) argument
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0]);
89 block->base_colors[1][0] = (int) TAG(etc1_base_color_diff_lo)(src[0]);
90 block->base_colors[0][1] = (int) TAG(etc1_base_color_diff_hi)(src[1]);
91 block->base_colors[1][1] = (int) TAG(etc1_base_color_diff_lo)(src[1]);
92 block->base_colors[0][2] = (int) TAG(etc1_base_color_diff_hi)(src[2]);
93 block->base_colors[1][2] = (int) TAG(etc1_base_color_diff_lo)(src[2]);
97 block->base_colors[0][0] = (int) TAG(etc1_base_color_ind_hi)(src[0]);
98 block->base_colors[1][0] = (int) TAG(etc1_base_color_ind_lo)(src[0]);
99 block
116 etc1_fetch_texel(const struct TAG(etc1_block) *block, int x, int y, UINT8_TYPE *dst) argument
147 struct etc1_block block; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexcompress_etc_tmp.h84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src) argument
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0]);
89 block->base_colors[1][0] = (int) TAG(etc1_base_color_diff_lo)(src[0]);
90 block->base_colors[0][1] = (int) TAG(etc1_base_color_diff_hi)(src[1]);
91 block->base_colors[1][1] = (int) TAG(etc1_base_color_diff_lo)(src[1]);
92 block->base_colors[0][2] = (int) TAG(etc1_base_color_diff_hi)(src[2]);
93 block->base_colors[1][2] = (int) TAG(etc1_base_color_diff_lo)(src[2]);
97 block->base_colors[0][0] = (int) TAG(etc1_base_color_ind_hi)(src[0]);
98 block->base_colors[1][0] = (int) TAG(etc1_base_color_ind_lo)(src[0]);
99 block
116 etc1_fetch_texel(const struct TAG(etc1_block) *block, int x, int y, UINT8_TYPE *dst) argument
147 struct etc1_block block; local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSuballocatedIntVector.java76 * block size is currently 2K, which may be overkill for
85 * Construct a IntVector, using the given block size and number
89 * @param blocksize Size of block to allocate
108 /** Construct a IntVector, using the given block size and
111 * @param blocksize Size of block to allocate
171 int[] block=m_map[index];
172 if(null==block)
173 block=m_map[index]=new int[m_blocksize];
174 block[offset]=value;
178 m_buildCache = block;
[all...]

Completed in 494 milliseconds

1234567891011>>