HomeSort by relevance Sort by last modified time
    Searched full:into (Results 151 - 175 of 58347) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixSoft_1St_2i_D16C31_WRA.c 61 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/
68 CurrentL -= DeltaL; /* Q31 + Q31 into Q31*/
75 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/
82 CurrentR -= DeltaR; /* Q31 + Q31 into Q31*/
92 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortL)>>15); /* Q15*Q15>>15 into Q15 */
93 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortR)>>15); /* Q15*Q15>>15 into Q15 */
101 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/
108 CurrentL -= DeltaL; /* Q31 + Q31 into Q31*/
115 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/
122 CurrentR -= DeltaR; /* Q31 + Q31 into Q31*
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
vacuum3.test 38 INSERT INTO t1 VALUES(1, 2, 3);
138 INSERT INTO abc VALUES(randomblob(100), randomblob(200), randomblob(1000));
139 INSERT INTO abc
142 INSERT INTO abc
145 INSERT INTO abc
148 INSERT INTO abc
151 INSERT INTO abc
154 INSERT INTO abc
157 INSERT INTO abc
160 INSERT INTO abc
    [all...]
where4.test 34 INSERT INTO t1 VALUES(1,2,3);
35 INSERT INTO t1 VALUES(1,NULL,3);
36 INSERT INTO t1 VALUES('a','b','c');
37 INSERT INTO t1 VALUES('a',NULL,'c');
38 INSERT INTO t1 VALUES(X'78',x'79',x'7a');
39 INSERT INTO t1 VALUES(X'78',NULL,X'7A');
40 INSERT INTO t1 VALUES(NULL,NULL,NULL);
131 INSERT INTO t2 VALUES(1);
132 INSERT INTO t2 VALUES(2);
133 INSERT INTO t2 VALUES(3)
    [all...]
distinctagg.test 23 INSERT INTO t1 VALUES(1,2,3);
24 INSERT INTO t1 VALUES(1,3,4);
25 INSERT INTO t1 VALUES(1,3,5);
39 INSERT INTO t1 SELECT a+1, b+3, c+5 FROM t1;
40 INSERT INTO t1 SELECT a+2, b+6, c+10 FROM t1;
41 INSERT INTO t1 SELECT a+4, b+12, c+20 FROM t1;
fts3shared.test 31 INSERT INTO t1 VALUES('We listened and looked sideways up!');
32 INSERT INTO t1 VALUES('Fear at my heart, as at a cup,');
33 INSERT INTO t1 VALUES('My life-blood seemed to sip!');
34 INSERT INTO t1 VALUES('The stars were dim, and thick the night');
38 # Open a write transaction and insert rows into the FTS3 table. This takes
43 INSERT INTO t1 VALUES('The steersman''s face by his lamp gleamed white;');
journal1.test 14 # prior databases do not try to rollback into new databases.
35 INSERT INTO t1 VALUES(1,randstr(10,400));
36 INSERT INTO t1 VALUES(2,randstr(10,400));
37 INSERT INTO t1 SELECT a+2, a||b FROM t1;
38 INSERT INTO t1 SELECT a+4, a||b FROM t1;
46 # old journal should not attempt to rollback into the new
select8.test 23 INSERT INTO songs VALUES(1,'one',1);
24 INSERT INTO songs VALUES(2,'one',2);
25 INSERT INTO songs VALUES(3,'two',3);
26 INSERT INTO songs VALUES(4,'three',5);
27 INSERT INTO songs VALUES(5,'one',7);
28 INSERT INTO songs VALUES(6,'two',11);
tkt2817.test 23 -- INSERT INTO tbl VALUES(1, 'abc', 'def');
24 -- INSERT INTO tbl VALUES(2, 'ghi', 'jkl');
31 INSERT INTO main.tbl SELECT a, b, c FROM temp.tbl;
56 INSERT INTO tmp VALUES(1, 'abc', 'def');
57 INSERT INTO tmp VALUES(2, 'ghi', 'jkl');
64 INSERT INTO main.tbl SELECT a, b, c FROM temp.tmp;
tkt3879.test 22 INSERT INTO t1 VALUES ('w', 1);
23 INSERT INTO t1 VALUES ('z', -1);
26 INSERT INTO t2 VALUES (25, 13, 'w', 1);
27 INSERT INTO t2 VALUES (26, 25, 'z', 153);
28 INSERT INTO t2 VALUES (27, 25, 'z', 68);
31 INSERT INTO t3 VALUES (25);
like2.test 24 INSERT INTO t1(x,y) VALUES(1,CAST(x'01' AS TEXT));
25 INSERT INTO t1(x,y) VALUES(2,CAST(x'02' AS TEXT));
26 INSERT INTO t1(x,y) VALUES(3,CAST(x'03' AS TEXT));
27 INSERT INTO t1(x,y) VALUES(4,CAST(x'04' AS TEXT));
28 INSERT INTO t1(x,y) VALUES(5,CAST(x'05' AS TEXT));
29 INSERT INTO t1(x,y) VALUES(6,CAST(x'06' AS TEXT));
30 INSERT INTO t1(x,y) VALUES(7,CAST(x'07' AS TEXT));
31 INSERT INTO t1(x,y) VALUES(8,CAST(x'08' AS TEXT));
32 INSERT INTO t1(x,y) VALUES(9,CAST(x'09' AS TEXT));
33 INSERT INTO t1(x,y) VALUES(10,CAST(x'0a' AS TEXT))
    [all...]
backup_malloc.test 27 INSERT INTO t1 VALUES(1, randstr(1000,1000));
28 INSERT INTO t1 SELECT a+ 1, randstr(1000,1000) FROM t1;
29 INSERT INTO t1 SELECT a+ 2, randstr(1000,1000) FROM t1;
30 INSERT INTO t1 SELECT a+ 4, randstr(1000,1000) FROM t1;
31 INSERT INTO t1 SELECT a+ 8, randstr(1000,1000) FROM t1;
32 INSERT INTO t1 SELECT a+16, randstr(1000,1000) FROM t1;
33 INSERT INTO t1 SELECT a+32, randstr(1000,1000) FROM t1;
34 INSERT INTO t1 SELECT a+64, randstr(1000,1000) FROM t1;
coalesce.test 21 INSERT INTO t1 VALUES(1, null, null, null);
22 INSERT INTO t1 VALUES(2, 2, 99, 99);
23 INSERT INTO t1 VALUES(3, null, 3, 99);
24 INSERT INTO t1 VALUES(4, null, null, 4);
25 INSERT INTO t1 VALUES(5, null, null, null);
26 INSERT INTO t1 VALUES(6, 22, 99, 99);
27 INSERT INTO t1 VALUES(7, null, 33, 99);
28 INSERT INTO t1 VALUES(8, null, null, 44);
count.test 56 INSERT INTO t1 VALUES(1, 2);
57 INSERT INTO t1 VALUES(3, 4);
64 INSERT INTO t1 SELECT * FROM t1; -- 4
65 INSERT INTO t1 SELECT * FROM t1; -- 8
66 INSERT INTO t1 SELECT * FROM t1; -- 16
67 INSERT INTO t1 SELECT * FROM t1; -- 32
68 INSERT INTO t1 SELECT * FROM t1; -- 64
69 INSERT INTO t1 SELECT * FROM t1; -- 128
70 INSERT INTO t1 SELECT * FROM t1; -- 256
77 INSERT INTO t1 SELECT * FROM t1; -- 51
    [all...]
incrvacuum2.test 36 INSERT INTO t1 VALUES(zeroblob(30000));
78 INSERT INTO t2 VALUES(zeroblob(30000));
79 INSERT INTO t1 SELECT * FROM t2;
122 INSERT INTO abc VALUES(randstr(1500,1500));
155 # 2. The leaf page transformed into a trunk page to replace the recycled
170 INSERT INTO t1 VALUES(randomblob(400));
171 INSERT INTO t1 SELECT * FROM t1; -- 2
172 INSERT INTO t1 SELECT * FROM t1; -- 4
173 INSERT INTO t1 SELECT * FROM t1; -- 8
174 INSERT INTO t1 SELECT * FROM t1; -- 1
    [all...]
tkt2339.test 26 insert into t1 values (1);
27 insert into t1 values (2);
28 insert into t1 values (3);
29 insert into t1 values (4);
32 insert into t2 values (11);
33 insert into t2 values (12);
34 insert into t2 values (13);
35 insert into t2 values (14);
tkt3922.test 21 INSERT INTO t1 VALUES('-9223372036854775808');
34 INSERT INTO t1 VALUES('-1');
42 INSERT INTO t1 VALUES('-9223372036854775809');
49 INSERT INTO t1 VALUES('-9223372036854776832');
56 INSERT INTO t1 VALUES('-9223372036854776833');
64 INSERT INTO t1 VALUES('9223372036854775807');
76 INSERT INTO t1 VALUES('1');
84 INSERT INTO t1 VALUES('9223372036854775808');
unique.test 43 INSERT INTO t1(a,b,c) VALUES(1,2,3)
48 INSERT INTO t1(a,b,c) VALUES(1,3,4)
58 INSERT INTO t1(a,b,c) VALUES(3,2,4)
68 INSERT INTO t1(a,b,c) VALUES(3,4,5)
82 INSERT INTO t2(a,b) VALUES(1,2);
83 INSERT INTO t2(a,b) VALUES(3,4);
99 INSERT INTO t2 VALUES(1,5);
115 INSERT INTO t2 VALUES(1,5)
150 INSERT INTO t3(a,b,c,d) VALUES(1,2,3,4);
156 INSERT INTO t3(a,b,c,d) VALUES(1,2,3,5)
    [all...]
unordered.test 22 INSERT INTO t1 VALUES(1, 'xxx');
23 INSERT INTO t1 SELECT a+1, b FROM t1;
24 INSERT INTO t1 SELECT a+2, b FROM t1;
25 INSERT INTO t1 SELECT a+4, b FROM t1;
26 INSERT INTO t1 SELECT a+8, b FROM t1;
27 INSERT INTO t1 SELECT a+16, b FROM t1;
28 INSERT INTO t1 SELECT a+32, b FROM t1;
29 INSERT INTO t1 SELECT a+64, b FROM t1;
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
debugger-step-on-for-statements.html 23 TEST 3: Click 'Step into'. Debugger should step into 'initialize' function. Click 'Step into' until
26 the for loop again. Click 'Step into'. Debugger should step into the 'increment' function.
27 Click 'Step into' until outside of the 'increment' function - debugger should enter the 'condition'
  /external/chromium_org/chrome/renderer/extensions/
extension_groups.h 12 // into which contexts.
14 // Use this to mark extensions to be loaded into content scripts only.
  /external/chromium_org/components/test/data/web_database/
version_45.sql 4 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
5 INSERT INTO "meta" VALUES('version','45');
6 INSERT INTO "meta" VALUES('last_compatible_version','45');
7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','2');
8 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature','');
9 INSERT INTO "meta" VALUES('Builtin Keyword Version','39');
50 INSERT INTO web_intents VALUES ('http://poodles.com/fuzzer', 'fuzz', 'poodle/*', 'Poodle Fuzzer', 'window');
51 INSERT INTO web_intents_defaults VALUES ('fuzz', 'poodle/*', '', 0, 0, 'http://poodles.com/fuzzer');
version_45_invalid.sql 4 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
5 INSERT INTO "meta" VALUES('version','45');
6 INSERT INTO "meta" VALUES('last_compatible_version','45');
7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','2');
8 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature','');
9 INSERT INTO "meta" VALUES('Builtin Keyword Version','39');
48 INSERT INTO web_intents VALUES (11);
49 INSERT INTO web_intents_defaults VALUES ('fuzz');
  /external/chromium_org/third_party/WebKit/ManualTests/
frame-hover.html 2 <p style="height: 50px;">Move the mouse pointer into the yellow box, then directly into the green box, then out of both boxes. No red or cyan should remain, only yellow and green.</p>
paste-crash.html 7 <li>Paste into Blot
20 <li>Paste into Blot
  /external/chromium_org/third_party/sqlite/src/
mkextu.sh 3 # This script is used to compile SQLite into a shared library on Linux.
7 # library that is loaded into TCL in order to run SQLite.

Completed in 119 milliseconds

1 2 3 4 5 67 8 91011>>