| /external/libhevc/common/arm64/ |
| ihevc_mem_fns.s | 24 // * Contains function definitions for memory manipulation 77 .type ihevc_memcpy_mul_8_av8, %function 105 .type ihevc_memcpy_av8, %function 148 .type ihevc_memset_mul_8_av8, %function 177 .type ihevc_memset_av8, %function 220 .type ihevc_memset_16bit_mul_8_av8, %function 250 .type ihevc_memset_16bit_av8, %function
|
| /external/llvm/bindings/ocaml/transforms/vectorize/ |
| llvm_vectorize.mli | 15 (** See the [llvm::createBBVectorizePass] function. *) 20 (** See the [llvm::createLoopVectorizePass] function. *) 25 (** See the [llvm::createSLPVectorizerPass] function. *)
|
| /external/skia/tools/lua/ |
| bbh_filter.lua | 10 function count_entries(table) 20 function reset_current() 34 function tostr(t) 54 function sk_scrape_startcanvas(c, fileName) end 56 function sk_scrape_endcanvas(c, fileName) 62 function sk_scrape_accumulate(t) 73 function sk_scrape_summarize() 80 table.sort(meta, function (a,b) return a.value > b.value; end) 102 function calculate_weight(verbs) 116 function output_with_metric(metric_func, description, numOutputFiles [all...] |
| /external/v8/test/cctest/compiler/ |
| test-linkage.cc | 29 // So we can get a real JS function. 46 Handle<JSFunction> function = Compile("a + b"); local 47 CompilationInfoWithZone info(function); 55 const char* sources[] = {"(function() { })", "(function(a) { })", 56 "(function(a,b) { })", "(function(a,b,c) { })"}; 60 Handle<JSFunction> function = v8::Utils::OpenHandle( local 61 *v8::Handle<v8::Function>::Cast(CompileRun(sources[i]))); 62 CompilationInfoWithZone info(function); 88 Handle<JSFunction> function = Compile("a + c"); local [all...] |
| /external/v8/test/mjsunit/compiler/ |
| inline-two.js | 30 // Test that we can inline a function that calls another function. 31 function TestInlineX(o) { 45 o2.size = function() { return 42; } 46 o2.g = function() { return this.size(); }; 54 function TestInlineX2(o) { 68 obj.foo = function() { return 42; } 71 o3.h = function() { return this.v.foo(); }; 79 function TestInlineFG(o) { 93 obj.g = function() { return 42; [all...] |
| load-elimination-global.js | 37 function B(x, y) { 43 function test_load() { 50 function test_load2() { 57 function test_store_load() { 64 function test_store_load2() { 72 function test_nonaliasing_store1() { 92 function test_loop(x) { 104 function test_loop2(x) { 131 function killall() { 137 function test_store_load_kill() [all...] |
| /external/v8/test/mjsunit/ |
| object-literal-overwrite.js | 42 bar: function(a){}, 47 bar: function(a){}, 48 bar: function(b){}, 53 bar: function(b){}, 55 bar: function(){return 7}, 59 13: function(a){}, 64 14.31: function(a){}, 73 function foo8(i) { 97 function fun(x) { 98 var inner = { j: function(x) { return x; }, j: 7 } [all...] |
| own-symbols.js | 10 function TestSimple() { 27 function TestICs() { 34 function checkNonOwn(o) {
|
| regress-sync-optimized-lists.js | 8 function Ctor() { 12 function get_closure() { 13 return function add_field(obj, osr) {
|
| smi-mul-const.js | 30 function check(func, input, expected) { 38 function mul_by_neg_1(a) { return a * -1; } 39 function mul_by_0(a) { return a * 0; } 40 function mul_by_1(a) { return a * 1; } 41 function mul_by_2(a) { return a * 2; } 48 function limit_range(a) { 53 function mul_by_neg_127(a) { return limit_range(a) * -127; } 54 function mul_by_neg_128(a) { return limit_range(a) * -128; } 55 function mul_by_neg_129(a) { return limit_range(a) * -129; } 56 function mul_by_1023(a) { return limit_range(a) * 1023; [all...] |
| top-level-assignments.js | 33 x.b = function() { return 42; }; 44 y.b = function() { return 42; }; 52 function forty_two() { return 42; }; 64 x1.b = function() { return 42; }; 66 x2.b = function() { return 42; }; 82 function Calculator(x, y) { 87 Calculator.prototype.sum = function() { return this.x + this.y; }; 88 Calculator.prototype.difference = function() { return this.x - this.y; }; 89 Calculator.prototype.product = function() { return this.x * this.y; }; 90 Calculator.prototype.quotient = function() { return this.x / this.y; } [all...] |
| array-sort.js | 33 function TestNumberSort() { 41 a.sort(function(x, y) { return x - y; }); 78 function TestSmiLexicographicCompare() { 85 function add(x) { 94 function addSigned(x) { 129 function TestStringSort() { 140 function TestObjectSort() { 141 var obj0 = { toString: function() { return "a"; } }; 142 var obj1 = { toString: function() { return "b"; } }; 143 var obj2 = { toString: function() { return "c"; } } [all...] |
| json2.js | 36 function TestStringify(expected, input) { 44 array_2[1<<17] = function() { return 1; }; 58 toString: function() { return true; } }; 63 toString: function() { return true; } }; 68 toString: function() { return true; } }; 69 // Note that toString function is not evaluated here! 81 // Test toJSON function. 82 var tojson_obj = { toJSON: function() { 90 // Test that we don't recursively look for the toJSON function. 92 tojson_proto_obj.__proto__ = { toJSON: function() { [all...] |
| keyed-call-ic.js | 33 function globalFunction1() { 37 function globalFunction2() { 44 function testGlobals() { 52 function F() {} 54 F.prototype.one = function() {return 'one'; } 55 F.prototype.two = function() {return 'two'; } 56 F.prototype.three = function() {return 'three'; } 61 function testKeyTransitions() { 111 // Function is a constant property 120 // Function is a fast propert [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-crbug-3184.js | 28 Object.extend = function (dest, source) { 33 Object.extend ( Function.prototype, 35 wrap : function (wrapper) { 37 var bmethod = (function(_method) { 38 return function () { 40 this.$proceed = function() { return _method.apply(this, arguments); }; 43 var amethod = function () { 48 var value = function() { bmethod.call(this); retval = wrapper.apply(this, arguments); amethod.call(this); return retval; }; 53 String.prototype.cap = function() { 58 function(each) [all...] |
| regress-escape-preserve-smi-representation.js | 7 function deepEquals(a, b) { 11 if (typeof a !== "object" && typeof a !== "function") return false; 13 if (objectClass === "Function") return false; 25 function __f_1(){
|
| /ndk/docs/Programmers_Guide/html/ |
| jquery.js | 16 (function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:fu (…) [all...] |
| /external/deqp/framework/delibs/coding_guidelines/ |
| prettify.js | 0 function H(){var x=navigator&&navigator.userAgent&&/\bMSIE 6\./.test(navigator.userAgent);H=function(){return x};return x}(function(){function x(b){b=b.split(/ /g);var a={};for(var c=b.length;--c>=0;){var d=b[c];if(d)a[d]=null}return a}var y="break continue do else for if return while ",U=y+"auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile ",D=U+"catch class delete false import new operator private protected public this throw true try ", 3 K=D+"debugger eval export function get null set undefined var with Infinity NaN ",L="caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END ",M=y+"and as assert class def del elif except exec finally from global import in is lambda nonlocal not or pass print raise try with yield False True None ",N=y+"alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END ", 4 O=y+"case done elif esac eval fi function in local set then until ",W=I+V+K+L+M+N+O;function X(b){return b>="a"&&b<="z"||b>="A"&&b<="Z"}function u(b,a,c,d){b.unshift(c,d||0);try{a.splice.apply(a,b)}finally{b.splice(0,2)}}var Y=(function(){var b=["!","!=","!==","#","%","%=","&","&&","&&=","&=","(","*","*=","+=",",","-=","->","/","/=",":","::",";","<","<<","<<=","<=","=","==","===",">",">=",">>",">>=",">>>",">>>=","?","@","[","^","^=","^^","^^=","{","|","|=","||","||=","~","break","case","continue", 5 "delete","do","else","finally","instanceof","return","throw","try","typeof"],a="(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)";for(var c=0;c<b.length;++c){var d=b[c];a+=X(d.charAt(0))?"|\\b"+d:"|"+d.replace(/([^=<>:&])/g,"\\$1")}a+="|^)\\s*$";return new RegExp(a)})(),P=/&/g,Q=/</g,R=/>/g,Z=/\"/g;function $(b){return b.replace(P,"&").replace(Q,"<").replace(R,">").replace(Z,""")}function (…) [all...] |
| /external/slf4j/slf4j-site/src/site/pages/js/ |
| prettify.js | 0 function H(){var x=navigator&&navigator.userAgent&&/\bMSIE 6\./.test(navigator.userAgent);H=function(){return x};return x}(function(){function x(b){b=b.split(/ /g);var a={};for(var c=b.length;--c>=0;){var d=b[c];if(d)a[d]=null}return a}var y="break continue do else for if return while ",U=y+"auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile ",D=U+"catch class delete false import new operator private protected public this throw true try ", 3 K=D+"debugger eval export function get null set undefined var with Infinity NaN ",L="caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END ",M=y+"and as assert class def del elif except exec finally from global import in is lambda nonlocal not or pass print raise try with yield False True None ",N=y+"alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END ", 4 O=y+"case done elif esac eval fi function in local set then until ",W=I+V+K+L+M+N+O;function X(b){return b>="a"&&b<="z"||b>="A"&&b<="Z"}function u(b,a,c,d){b.unshift(c,d||0);try{a.splice.apply(a,b)}finally{b.splice(0,2)}}var Y=(function(){var b=["!","!=","!==","#","%","%=","&","&&","&&=","&=","(","*","*=","+=",",","-=","->","/","/=",":","::",";","<","<<","<<=","<=","=","==","===",">",">=",">>",">>=",">>>",">>>=","?","@","[","^","^=","^^","^^=","{","|","|=","||","||=","~","break","case","continue", 5 "delete","do","else","finally","instanceof","return","throw","try","typeof"],a="(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)";for(var c=0;c<b.length;++c){var d=b[c];a+=X(d.charAt(0))?"|\\b"+d:"|"+d.replace(/([^=<>:&])/g,"\\$1")}a+="|^)\\s*$";return new RegExp(a)})(),P=/&/g,Q=/</g,R=/>/g,Z=/\"/g;function $(b){return b.replace(P,"&").replace(Q,"<").replace(R,">").replace(Z,""")}function (…) [all...] |
| /external/google-breakpad/src/common/ |
| module_unittest.cc | 52 static Module::Function *generate_duplicate_function(const string &name) { 57 Module::Function *function = new Module::Function(name, DUP_ADDRESS); local 58 function->size = DUP_SIZE; 59 function->parameter_size = DUP_PARAMETER_SIZE; 60 return function; 82 Module::Function *function = new Module::Function( local 110 Module::Function *function = new Module::Function( local 167 Module::Function *function = new Module::Function( local 215 Module::Function *function = new Module::Function( local 495 Module::Function* function = new Module::Function("_xyz", 0xfff0); local 532 Module::Function* function = new Module::Function("_thumb_xyz", 0xfff0); local [all...] |
| /external/v8/benchmarks/ |
| navier-stokes.js | 35 function runNavierStokes() 40 function setupNavierStokes() 45 solver.setDisplayFunction(function(){}); 50 function tearDownNavierStokes() 55 function addPoints(field) { 70 function prepareFrame(field) 82 function FluidField(canvas) { 83 function addFields(x, s, dt) 88 function set_bnd(b, x) 128 function lin_solve(b, x, x0, a, c [all...] |
| /external/v8/src/ |
| collection.js | 18 function SetConstructor(iterable) { 47 function SetAddJS(key) { 63 function SetHasJS(key) { 72 function SetDeleteJS(key) { 81 function SetGetSizeJS() { 90 function SetClearJS() { 99 function SetForEach(f, receiver) { 123 function SetUpSet() { 149 function MapConstructor(iterable) { 182 function MapGetJS(key) [all...] |
| /external/v8/test/mjsunit/es6/ |
| arguments-iterator.js | 12 function TestDirectArgumentsIteratorProperty() { 25 function TestIndirectArgumentsIteratorProperty() { 34 function assertIteratorResult(value, done, result) { 39 function TestDirectValues1(a, b, c) { 49 function TestIndirectValues1(a, b, c) { 60 function TestDirectValues2(a, b, c) { 74 function TestIndirectValues2(a, b, c) { 89 function TestDirectValues3(a, b, c) { 100 function TestIndirectValues3(a, b, c) { 112 function TestDirectValues4(a, b, c) [all...] |
| microtask-delivery.js | 31 function reset() { 35 function assertArrayValues(expected, actual) { 42 function assertOrdering(expected) { 47 function newPromise(id, fn) { 50 var promise = new Promise(function(resolve) { 55 var next = promise.then(function(value) { 62 then: function(fn) { 63 next = next.then(function(value) { 73 function newObserver(id, fn, obj) { 79 Object.observe(observer, function(records) [all...] |
| /external/v8/test/mjsunit/harmony/ |
| block-scoping.js | 34 function f1() { 48 function f2(one) { 67 function f3(one) { 90 function f4(one) { 97 function f() { 111 function f5(one) { 118 function f() { 132 function f6() { 145 function f7(a) { 212 (function(c) [all...] |