Searched refs:epilog (Results 1 - 25 of 155) sorted by relevance

1234567

/external/stlport/stlport/stl/
H A D_cprolog.h12 # error STlport prolog header can not be reincluded as long as epilog has not be included.
H A D_epilog.h8 # error STLport epilog header can not be included as long as prolog has not be included.
11 /* If the platform provides any specific epilog actions,
/external/chromium_org/tools/cr/cr/commands/
H A Dcommand.py37 self.epilog = None
57 epilog=self.epilog,
/external/chromium_org/native_client_sdk/src/tools/
H A Dncval.py33 epilog = 'Example: ncval.py my_nexe.nexe'
34 parser = optparse.OptionParser(usage, description=__doc__, epilog=epilog)
H A Dcreate_html.py164 epilog = 'Example: create_html.py -o index.html my_nexe.nexe'
165 parser = optparse.OptionParser(usage, description=__doc__, epilog=epilog)
H A Dsel_ldr.py53 epilog = 'Example: sel_ldr.py my_nexe.nexe'
54 parser = optparse.OptionParser(usage, description=__doc__, epilog=epilog)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.h65 (* epilog)( member in struct:tgsi_iterate_context
H A Dtgsi_iterate.c80 if (ctx->epilog)
81 if (!ctx->epilog( ctx ))
H A Dtgsi_transform.h63 void (*epilog)(struct tgsi_transform_context *ctx); member in struct:tgsi_transform_context
/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemcpy.S67 * int i, prolog, kernel, epilog, mask;
88 * epilog = kernel & 0x1F;
111 * if(kernel) { kernel -= 1; epilog += 32; }
129 * epilogdws = epilog >> 3;
139 * if (epilog & 4) { ptr4[0] = (u32) data0; data0 >>= 32; ptr_out += 4;}
141 * if (epilog & 2) { ptr2[0] = (u16) data0; data0 >>= 16; ptr_out += 2;}
142 * if (epilog & 1) { *ptr_out++ = (u8) data0; }
162 #define ifbyte p0 /* if transfer has bytes in epilog/prolog */
163 #define ifhword p0 /* if transfer has shorts in epilog/prolog */
164 #define ifword p0 /* if transfer has words in epilog/prolo
175 #define epilog R3 /* bytes in epilog */ define
264 epilog = and(kernel, #31); define
484 epilog = add(epilog, #-8); define
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.h65 (* epilog)( member in struct:tgsi_iterate_context
H A Dtgsi_iterate.c80 if (ctx->epilog)
81 if (!ctx->epilog( ctx ))
H A Dtgsi_transform.h63 void (*epilog)(struct tgsi_transform_context *ctx); member in struct:tgsi_transform_context
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
H A Dsce2.asm24 ; Here's the official epilog
H A Dsce3.asm33 ; this isn't part of the official epilog, as described in section 2.5
39 ; Here's the official epilog
68 ; Here's the official epilog
H A Dsce1.asm33 ; this isn't part of the official epilog, as described in section 2.5
39 ; Here's the official epilog
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_subpixel_bilinear_sse2.asm151 ; begin epilog
176 ; begin epilog
204 ; begin epilog
229 ; begin epilog
254 ; begin epilog
282 ; begin epilog
308 ; begin epilog
334 ; begin epilog
362 ; begin epilog
388 ; begin epilog
[all...]
H A Dvp9_subpixel_bilinear_ssse3.asm129 ; begin epilog
154 ; begin epilog
181 ; begin epilog
206 ; begin epilog
231 ; begin epilog
258 ; begin epilog
284 ; begin epilog
310 ; begin epilog
337 ; begin epilog
363 ; begin epilog
[all...]
H A Dvp9_high_subpixel_bilinear_sse2.asm191 ; begin epilog
217 ; begin epilog
245 ; begin epilog
271 ; begin epilog
297 ; begin epilog
325 ; begin epilog
352 ; begin epilog
378 ; begin epilog
406 ; begin epilog
433 ; begin epilog
[all...]
/external/chromium_org/tools/cr/cr/base/
H A Dcontext.py116 def CreateData(self, description='', epilog=''):
129 epilog=epilog)
242 def Create(description='', epilog=''):
244 context.CreateData(description=description, epilog=epilog)
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_subpixel_bilinear_sse2.asm151 ; begin epilog
176 ; begin epilog
204 ; begin epilog
229 ; begin epilog
254 ; begin epilog
282 ; begin epilog
308 ; begin epilog
334 ; begin epilog
362 ; begin epilog
388 ; begin epilog
[all...]
H A Dvp9_subpixel_bilinear_ssse3.asm129 ; begin epilog
154 ; begin epilog
181 ; begin epilog
206 ; begin epilog
231 ; begin epilog
258 ; begin epilog
284 ; begin epilog
310 ; begin epilog
337 ; begin epilog
363 ; begin epilog
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool.py163 # We override format_epilog to avoid the default formatting which would paragraph-wrap the epilog
164 # and also to allow us to compute the epilog lazily instead of in the constructor (allowing it to be context sensitive).
165 def format_epilog(self, epilog):
186 epilog = "All %prog commands:\n"
189 epilog = "Common %prog commands:\n"
194 epilog += "%s\n" % "".join(command_help_texts)
195 epilog += "See '%prog help --all-commands' to list all commands.\n"
196 epilog += "See '%prog help COMMAND' for more information on a specific command.\n"
197 return epilog.replace("%prog", self._tool.name()) # Use of %prog here mimics OptionParser.expand_prog_name().
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times.py44 epilog = """
53 parser.epilog = '\n'.join(s.lstrip() for s in epilog.splitlines())
/external/chromium-trace/trace-viewer/build/
H A Dflatten.py44 epilog="""

Completed in 441 milliseconds

1234567