Searched refs:function (Results 76 - 100 of 1791) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dcomdat-reloc.s5 .type hello,@function
11 .type world,@function
/external/llvm/test/MC/Mips/
H A Delf_st_other.s5 .type f1, @function
16 .type f2, @function
/external/skia/tools/lua/
H A Dchars-vs-glyphs.lua3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
21 function sk_scrape_accumulate(t)
31 function sk_scrape_summarize()
H A Ddumpops.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
25 function sk_scrape_accumulate(t)
33 function sk_scrape_summarize() end
H A Dxfer-counter.lua2 function sk_scrape_startcanvas(c, fileName)
5 function sk_scrape_endcanvas(c, fileName)
11 function sk_scrape_accumulate(t)
30 function sk_scrape_summarize()
37 function test_summary()
H A Dcount_effects.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
27 function count_fields(t)
35 function sk_scrape_accumulate(t)
42 function sk_scrape_summarize()
/external/syslinux/core/thread/
H A Dsem_asm.S2 .type sem_down, @function
11 .type sem_up, @function
/external/syslinux/gpxe/src/include/gpxe/
H A Dansiesc.h25 * the control function.
33 /** The control function identifier
35 * The control function identifier consists of the
42 unsigned int function; member in struct:ansiesc_handler
50 * function should be used.
72 * Must be terminated by a handler with @c function set to
83 /** Control function identifier */
84 unsigned int function; member in struct:ansiesc_context
94 * @defgroup ansifuncs ANSI escape sequence function identifiers
/external/valgrind/memcheck/tests/solaris/
H A Dldynsym.c18 static void function(size_t size) function
25 function(10);
/external/webrtc/talk/media/base/
H A Dmediaengine.cc46 MediaEngineFactory::SetCreateFunction(MediaEngineCreateFunction function) { argument
48 create_function_ = function;
/external/swiftshader/src/Reactor/
H A DRoutineManager.hpp34 virtual uint8_t *allocateStub(const llvm::GlobalValue *function, unsigned stubSize, unsigned alignment);
35 virtual uint8_t *startFunctionBody(const llvm::Function *function, uintptr_t &actualSize);
36 virtual void endFunctionBody(const llvm::Function *function, uint8_t *functionStart, uint8_t *functionEnd);
37 virtual uint8_t *startExceptionTable(const llvm::Function *function, uintptr_t &ActualSize);
38 virtual void endExceptionTable(const llvm::Function *function, uint8_t *tableStart, uint8_t *tableEnd, uint8_t *frameRegister);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonTokenStream.as65 public function CommonTokenStream(tokenSource:TokenSource = null, channel:int = TokenConstants.DEFAULT_CHANNEL) {
71 public function set tokenSource(tokenSource:TokenSource):void {
82 protected function fillBuffer():void {
120 public function consume():void {
130 protected function skipOffTokenChannels(i:int):int {
138 protected function skipOffTokenChannelsReverse(i:int):int {
151 public function setTokenTypeChannel(ttype:int, channel:int):void {
158 public function discardTokenType(ttype:int):void {
165 public function discardOffChannelTokens(discardOffChannelTokens:Boolean):void {
169 public function getToken
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.as72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
92 public function reset():void {
97 public function add(el:Object):void {
122 public function nextTree():Object {
141 protected function _next():Object {
169 protected function dup(el:Object):Object {
176 protected function toTree(el:Object):Object {
180 public function get hasNext():Boolean {
185 public function get size():int {
196 public function ge
[all...]
H A DRewriteRuleSubtreeStream.as32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
49 public function nextNode():Object {
63 protected override function dup(el:Object):Object {
/external/llvm/bindings/ocaml/transforms/scalar_opts/
H A Dllvm_scalar_opts.mli15 (** See the [llvm::createAggressiveDCEPass] function. *)
20 (** See the [llvm::createAlignmentFromAssumptionsPass] function. *)
25 (** See the [llvm::createCFGSimplificationPass] function. *)
30 (** See [llvm::createDeadStoreEliminationPass] function. *)
35 (** See [llvm::createScalarizerPass] function. *)
40 (** See [llvm::createMergedLoadStoreMotionPass] function. *)
45 (** See the [llvm::createGVNPass] function. *)
50 (** See the [llvm::createIndVarSimplifyPass] function. *)
55 (** See the [llvm::createInstructionCombiningPass] function. *)
60 (** See the [llvm::createJumpThreadingPass] function
[all...]
/external/llvm/bindings/ocaml/transforms/passmgr_builder/
H A Dllvm_passmgr_builder.mli17 (** See the [llvm::PassManagerBuilder] function. *)
21 (** See the [llvm::PassManagerBuilder::OptLevel] function. *)
25 (** See the [llvm::PassManagerBuilder::SizeLevel] function. *)
29 (** See the [llvm::PassManagerBuilder::DisableUnitAtATime] function. *)
33 (** See the [llvm::PassManagerBuilder::DisableUnrollLoops] function. *)
37 (** See the [llvm::PassManagerBuilder::Inliner] function. *)
41 (** See the [llvm::PassManagerBuilder::populateFunctionPassManager] function. *)
46 (** See the [llvm::PassManagerBuilder::populateModulePassManager] function. *)
51 (** See the [llvm::PassManagerBuilder::populateLTOPassManager] function. *)
/external/clang/test/Modules/
H A Dredecl-add-after-load.cpp12 extern constexpr int function();
13 constexpr int test(bool b) { return b ? variable : function(); }
18 extern constexpr int function();
21 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
25 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
30 static constexpr int function();
33 constexpr int D_test(bool b) { return b ? D::variable : D::function(); }
/external/llvm/bindings/ocaml/transforms/ipo/
H A Dllvm_ipo.mli15 (** See the [llvm::createAddArgumentPromotionPass] function. *)
20 (** See the [llvm::createConstantMergePass] function. *)
25 (** See the [llvm::createDeadArgEliminationPass] function. *)
30 (** See the [llvm::createFunctionAttrsPass] function. *)
35 (** See the [llvm::createFunctionInliningPass] function. *)
40 (** See the [llvm::createAlwaysInlinerPass] function. *)
45 (** See the [llvm::createGlobalDCEPass] function. *)
50 (** See the [llvm::createGlobalOptimizerPass] function. *)
55 (** See the [llvm::createIPConstantPropagationPass] function. *)
60 (** See the [llvm::createPruneEHPass] function
[all...]
/external/llvm/test/MC/ARM/
H A Deh-directive-unwind_raw-diagnostics.s6 .type require_fnstart,%function
14 .type check_arguments,%function
24 .type check_stack_offset,%function
34 .type comma_check,%function
44 .type require_opcode,%function
54 .type require_opcode_constant,%function
64 .type check_opcode_range,%function
H A Darm-qualifier-diagnostics.s5 .type function,%function
6 function: label
H A Dbkpt.s7 .type thumb_default_bkpt, %function
16 .type normal_bkpt, %function
26 .type arm_default_bkpt, %function
H A Dthumb-st_other.s1 @ Check the value of st_other for thumb function.
3 @ ARM does not define any st_other flags for thumb function. The value
14 .type main,%function
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke.pass.cpp12 // class function<R(ArgTypes...)>
37 // function
39 std::function<int ()> r1(f_int_0);
42 // function pointer
45 std::function<int ()> r1(fp);
51 std::function<int ()> r1(a0);
73 // function
75 std::function<void ()> r1(f_void_0);
80 // function pointer
83 std::function<voi
[all...]
/external/llvm/test/MC/ARM/Windows/
H A Dtext-attributes.s9 .def function
13 .global function
15 function: label
/external/tpm2/
H A DCpriCryptPri.c12 static void Trap(const char *function, int line, int code);
20 // This function is called if the caller to _cpri__InitCryptoUnits() doesn't provide a call back address.
24 const char *function,
29 UNREFERENCED(function);
38 // This function calls the initialization functions of the other crypto modules that are part of the crypto engine
39 // for this implementation. This function should be called as a result of _TPM_Init(). The parameter to this
40 // function is a call back function it TPM.lib that is called when the crypto engine has a failure.
63 // This function calls the shutdown functions of the other crypto modules that are part of the crypto engine
77 // This function call
23 Trap( const char *function, int line, int code ) argument
[all...]

Completed in 2237 milliseconds

1234567891011>>