HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK (Results 76 - 100 of 225) sorted by null

1 2 34 5 6 7 8 9

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
quantize_sse4.asm 16 ; (BLOCK *b, | 0
43 mov rdi, arg(0) ; BLOCK *b
47 mov rdi, rcx ; BLOCK *b
50 ;mov rdi, rdi ; BLOCK *b
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 83 textBlockStyle->setDisplay(BLOCK);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
quantize.c 19 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
52 void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d)
111 x->quantize_b(&x->block[i], &x->e_mbd.block[i]);
114 x->quantize_b(&x->block[24], &x->e_mbd.block[24]);
124 x->quantize_b(&x->block[i], &x->e_mbd.block[i]);
133 x->quantize_b(&x->block[i], &x->e_mbd.block[i])
    [all...]
encodemb.c 22 void vp8_subtract_b_c(BLOCK *be, BLOCKD *bd, int pitch)
98 BLOCK *b = &x->block[0];
124 x->short_fdct8x4(&x->block[i].src_diff[0],
125 &x->block[i].coeff[0], 16);
136 x->short_fdct8x4(&x->block[i].src_diff[0],
137 &x->block[i].coeff[0], 32);
140 /* build dc block from 16 y dc values */
143 /* do 2nd order transform on the dc block */
144 x->short_walsh4x4(&x->block[24].src_diff[0]
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 334 BLOCK;
346 -> ^(BLOCK stat*)
379 | ^(BLOCK stat*)
  /external/chromium_org/tools/grit/grit/format/
rc_unittest.py 136 BLOCK "StringFileInfo"
138 BLOCK "040904b0"
149 BLOCK "VarFileInfo"
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
30 public static final int BLOCK=9;
112 // SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
115 // SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) )
169 // SimpleCTP.g:15:9: ^( FUNC_DEF functionHeader block )
180 block(); method
398 // $ANTLR start "block"
399 // SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ;
400 public final void block() throws RecognitionException method in class:SimpleCTP
546 block(); method
593 block(); method
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
30 public static final int BLOCK=9;
112 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
115 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) )
169 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:15:9: ^( FUNC_DEF functionHeader block )
180 block(); method
398 // $ANTLR start "block"
399 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ;
400 public final void block() throws RecognitionException method in class:SimpleCTP
546 block(); method
593 block(); method
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmametadatapass.py 59 # A block of code.
60 BLOCK = 'block'
62 # A pseudo-block of code for a given case or default section.
65 # Block of statements in a for loop's parentheses.
68 # An implied block of code for 1 line if, while, and for statements
90 # and a BLOCK with the code.
92 # Since that BLOCK is not a normal block, it can not contain statements except
116 ROOT, BLOCK, CASE_BLOCK, FOR_GROUP_BLOCK, IMPLIED_BLOCK]
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
scopeutil.py 32 """Whether the given context is a goog.scope block.
34 This function only checks that the block is a function block inside
41 context: An EcmaContext of type block.
44 Whether the context is a goog.scope block.
47 if context.type != ecmametadatapass.EcmaContext.BLOCK:
69 """Check if a context is a function literal block (without parameters).
71 Example function literal block: 'function() {}'
74 block_context: An EcmaContext of type block.
77 Whether this context is a function literal block
    [all...]
ecmametadatapass.py 59 # A block of code.
60 BLOCK = 'block'
62 # A pseudo-block of code for a given case or default section.
65 # Block of statements in a for loop's parentheses.
68 # An implied block of code for 1 line if, while, and for statements
90 # and a BLOCK with the code.
92 # Since that BLOCK is not a normal block, it can not contain statements except
116 ROOT, BLOCK, CASE_BLOCK, FOR_GROUP_BLOCK, IMPLIED_BLOCK]
    [all...]
scopeutil_test.py 119 if context.type is ecmametadatapass.EcmaContext.BLOCK:
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
quantize_ssse3.c 13 #include "vp8/encoder/block.h"
42 void vp8_fast_quantize_b_ssse3(BLOCK *b, BLOCKD *d) {
quantize_sse2.c 16 #include "vp8/encoder/block.h"
35 void vp8_regular_quantize_b_sse2(BLOCK *b, BLOCKD *d)
145 void vp8_fast_quantize_b_sse2(BLOCK *b, BLOCKD *d)
quantize_sse4.c 15 #include "vp8/encoder/block.h"
32 void vp8_regular_quantize_b_sse4_1(BLOCK *b, BLOCKD *d) {
  /external/e2fsprogs/e2fsck/
mtrace.h 62 /* Re-allocate the previously allocated block
63 in __ptr_t, making the new block SIZE bytes long. */
67 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
101 receive a fragment of a block. Fragment sizes are powers of two,
102 and all fragments of a block are the same size. When all the
103 fragments in a block have been freed, the block itself is freed. */
117 /* Data structure giving per-block information. */
120 /* Heap information for a busy block. */
123 /* Zero for a large block, or positive giving th
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML.java 43 * BLOCK - block-like elements; e.g., paragraphs and lists
48 BLOCK,
63 * Flow refers to whether the element is inherently character or block level. Breaks flow
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 22 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
70 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
106 void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d)
159 void vp8_strict_quantize_b_c(BLOCK *b, BLOCKD *d)
218 void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d)
276 x->quantize_b(&x->block[i], &x->e_mbd.block[i]);
279 x->quantize_b(&x->block[24], &x->e_mbd.block[24]);
289 x->quantize_b(&x->block[i], &x->e_mbd.block[i])
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
quantize.c 22 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
70 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
106 void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d)
159 void vp8_strict_quantize_b_c(BLOCK *b, BLOCKD *d)
218 void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d)
276 x->quantize_b(&x->block[i], &x->e_mbd.block[i]);
279 x->quantize_b(&x->block[24], &x->e_mbd.block[24]);
289 x->quantize_b(&x->block[i], &x->e_mbd.block[i])
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 60 CommonTree block = (CommonTree)t.getFirstChildWithType(BLOCK);
62 for (int i = 0; i < block.getChildCount(); i++) {
63 if (block.getChild(i).getType() == ALT)
252 b=block
256 // copy rule options into the block AST, which is where
319 block
327 : ^( BLOCK
435 | ^( SYNPRED block )
463 | block
    [all...]
ANTLR.g 77 BLOCK;
294 * return ^(BLOCK["BLOCK"] {alt} EOB["<end-of-block>"])
302 GrammarAST block = (GrammarAST)adaptor.create(BLOCK, b.getToken(), "BLOCK");
303 adaptor.addChild(block, alt);
304 adaptor.addChild(alt, adaptor.create(EOB, "<end-of-block>"));
306 return block;
    [all...]
TreeToNFAConverter.g 228 b=block
235 // if block comes back as a set not BLOCK, make it
236 // a single ALT block
241 // attach start node to block for this rule
280 block returns [StateCluster g = null]
292 | ^( BLOCK ( ^(OPTIONS .*) )?
366 | ^( SYNPRED block )
380 if (blk.getType() != BLOCK) {
387 | b=block
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 99 * ( block.statement | ";" )
153 body = new Stmnt(BLOCK);
221 * : block.statement
245 return new Stmnt(BLOCK); // empty statement
279 /* block.statement : "{" statement* "}"
290 body = (Stmnt)ASTList.concat(body, new Stmnt(BLOCK, s));
295 return new Stmnt(BLOCK); // empty block
385 /* switch.statement : SWITCH "(" expression ")" "{" switch.block "}"
387 * swtich.block : ( switch.label statement* )
472 Stmnt block = parseBlock(tbl); local
    [all...]
  /external/chromium_org/content/browser/frame_host/
interstitial_page_impl.h 32 BLOCK,
201 // Used to block/resume/cancel requests for the RenderViewHost hidden by this
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
subtract_neon.c 12 #include "vp8/encoder/block.h"
15 BLOCK *be,

Completed in 2363 milliseconds

1 2 34 5 6 7 8 9