Searched refs:block (Results 201 - 225 of 1927) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_etc.c29 struct etc1_block block; local
36 etc1_parse_block(&block, src);
43 etc1_fetch_texel(&block, i, j, tmp);
69 struct etc1_block block; local
74 etc1_parse_block(&block, src);
75 etc1_fetch_texel(&block, i, j, tmp);
/external/chromium_org/third_party/icu/source/common/
H A Dutrie.cpp83 /* preallocate and reset the first data block (block index 0) */
87 /* preallocate and reset the first block (number 0) and Latin-1 (U+0000..U+00ff) after that */
93 /* do this at least for trie->index[0] even if that block is only partly used for Latin-1 */
190 * @return -1 if no new data block available (out of memory in data array)
203 /* allocate a new data block */
211 /* copy-on-write for a block from a setRange() */
221 int32_t block; local
228 block=utrie_getDataBlock(trie, c);
229 if(block<
239 int32_t block; local
261 utrie_fillBlock(uint32_t *block, UChar32 start, UChar32 limit, uint32_t value, uint32_t initialValue, UBool overwrite) argument
289 int32_t block, rest, repeatBlock; local
377 int32_t block, i; local
408 int32_t indexLength, block; local
562 int32_t block; local
937 uint16_t block; local
1064 int32_t l, i, j, block, prevBlock, nullBlock, offset; local
[all...]
/external/icu/icu4c/source/common/
H A Dutrie.cpp83 /* preallocate and reset the first data block (block index 0) */
87 /* preallocate and reset the first block (number 0) and Latin-1 (U+0000..U+00ff) after that */
93 /* do this at least for trie->index[0] even if that block is only partly used for Latin-1 */
190 * @return -1 if no new data block available (out of memory in data array)
203 /* allocate a new data block */
211 /* copy-on-write for a block from a setRange() */
221 int32_t block; local
228 block=utrie_getDataBlock(trie, c);
229 if(block<
239 int32_t block; local
261 utrie_fillBlock(uint32_t *block, UChar32 start, UChar32 limit, uint32_t value, uint32_t initialValue, UBool overwrite) argument
289 int32_t block, rest, repeatBlock; local
377 int32_t block, i; local
408 int32_t indexLength, block; local
562 int32_t block; local
937 uint16_t block; local
1064 int32_t l, i, j, block, prevBlock, nullBlock, offset; local
[all...]
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Ddrawing_container.css15 display: block;
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_iframe.css12 display: block;
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineBreaker.h39 LineBreaker(RenderBlockFlow* block) argument
40 : m_block(block)
/external/chromium_org/third_party/markdown/extensions/
H A Ddef_list.py67 def test(self, parent, block):
68 return bool(self.RE.search(block))
75 block = raw_block[m.end():]
76 no_indent = self.NO_INDENT_RE.match(block)
78 d, theRest = (block, None)
80 d, theRest = self.detab(block)
128 def create_item(self, parent, block):
129 """ Create a new dd and parse the block with it as the parent. """
131 self.parser.parseBlocks(dd, [block])
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_scene.h111 * Include the first block of data statically to ensure we can always
200 * Grow the block list if needed.
206 struct data_block *block = list->head; local
209 assert(block != NULL);
212 debug_printf("alloc %u block %u/%u tot %u/%u\n",
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
217 block = lp_scene_new_data_block( scene );
218 if (!block) {
225 ubyte *data = block
240 struct data_block *block = list->head; local
[all...]
/external/chromium_org/third_party/polymer/components/core-icon/
H A Dcore-icon.css9 display: inline-block;
/external/chromium_org/third_party/polymer/components/core-menu/
H A Dcore-menu.css11 display: block;
H A Dcore-submenu.css11 display: block;
/external/chromium_org/third_party/polymer/components-chromium/core-icon/
H A Dcore-icon.css9 display: inline-block;
/external/chromium_org/third_party/polymer/components-chromium/core-menu/
H A Dcore-menu.css11 display: block;
H A Dcore-submenu.css11 display: block;
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dlist.css9 display: block;
25 display: block;
29 display: inline-block;
50 display: block;
/external/libnfc-nci/src/hal/int/
H A Dnfc_hal_nv_co.h89 void nfc_hal_nv_co_read (UINT8 *p_buf, UINT16 nbytes, UINT8 block);
109 void nfc_hal_nv_co_write (const UINT8 *p_buf, UINT16 nbytes, UINT8 block);
/external/libnfc-nci/src/nfa/include/
H A Dnfa_nv_co.h91 NFC_API extern void nfa_nv_co_read (UINT8 *p_buf, UINT16 nbytes, UINT8 block);
111 NFC_API extern void nfa_nv_co_write (const UINT8 *p_buf, UINT16 nbytes, UINT8 block);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemb.h26 void vp9_xform_quant(MACROBLOCK *x, int plane, int block,
31 void vp9_encode_block_intra(MACROBLOCK *x, int plane, int block,
/external/markdown/markdown/extensions/
H A Ddef_list.py31 def test(self, parent, block):
32 return bool(self.RE.search(block))
35 block = blocks.pop(0)
36 m = self.RE.search(block)
37 terms = [l.strip() for l in block[:m.start()].split('\n') if l.strip()]
38 d, theRest = self.detab(block[m.end():])
82 def create_item(parent, block):
83 """ Create a new dd and parse the block with it as the parent. """
85 self.parser.parseBlocks(dd, [block])
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene.h111 * Include the first block of data statically to ensure we can always
200 * Grow the block list if needed.
206 struct data_block *block = list->head; local
209 assert(block != NULL);
212 debug_printf("alloc %u block %u/%u tot %u/%u\n",
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
217 block = lp_scene_new_data_block( scene );
218 if (!block) {
225 ubyte *data = block
240 struct data_block *block = list->head; local
[all...]
/external/valgrind/main/helgrind/tests/
H A Dannotate_hbefore.c95 UWord block[4] = { (UWord)addr, expected, nyu, 2 }; local
105 : /*in*/ "S"(&block[0])
108 assert(block[3] == 0 || block[3] == 1);
109 return block[3] & 1;
118 UWord block[4] = { (UWord)addr, expected, nyu, 2 }; local
130 : /*in*/ "S"(&block[0])
133 assert(block[3] == 0 || block[3] == 1);
134 return block[
144 UWord block[2] = { (UWord)addr, nyu }; local
177 UWord block[2] = { (UWord)addr, nyu }; local
229 UWord block[3] = { (UWord)addr, nyu, expected}; local
262 UWord block[3] = { (UWord)addr, nyu, expected}; local
[all...]
/external/valgrind/main/memcheck/tests/
H A Dclo_redzone_128.stderr.exp4 Address 0x........ is 69 bytes after a block of size 128 alloc'd
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
131 block[count] = tmp;
134 *pos++ = (block[0] << 2) | (block[1] >> 4);
135 *pos++ = (block[1] << 4) | (block[2] >> 2);
136 *pos++ = (block[2] << 6) | block[3];
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
131 block[count] = tmp;
134 *pos++ = (block[0] << 2) | (block[1] >> 4);
135 *pos++ = (block[1] << 4) | (block[2] >> 2);
136 *pos++ = (block[2] << 6) | block[3];
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
131 block[count] = tmp;
134 *pos++ = (block[0] << 2) | (block[1] >> 4);
135 *pos++ = (block[1] << 4) | (block[2] >> 2);
136 *pos++ = (block[2] << 6) | block[3];

Completed in 9266 milliseconds

1234567891011>>