Searched defs:pre (Results 1 - 25 of 44) sorted by relevance

12

/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_PlatformFile.java24 public static String getNewPlatformFile(String pre, String post) { argument
33 return pre + platformId + post;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitorAction.java32 * pre() before visiting children and execute post() after visiting children.
40 public Object pre(Object t); method in interface:TreeVisitorAction
/external/libvpx/vp8/decoder/arm/armv6/
H A Didct_blk_v6.c16 (short *q, short *dq, unsigned char *pre,
24 vp8_dequant_dc_idct_add_v6 (q, dq, pre, dst, 16, stride, dc[0]);
26 vp8_dc_only_idct_add_v6 (dc[0], pre, dst, 16, stride);
29 vp8_dequant_dc_idct_add_v6 (q+16, dq, pre+4, dst+4, 16, stride, dc[1]);
31 vp8_dc_only_idct_add_v6 (dc[1], pre+4, dst+4, 16, stride);
34 vp8_dequant_dc_idct_add_v6 (q+32, dq, pre+8, dst+8, 16, stride, dc[2]);
36 vp8_dc_only_idct_add_v6 (dc[2], pre+8, dst+8, 16, stride);
39 vp8_dequant_dc_idct_add_v6 (q+48, dq, pre+12, dst+12, 16, stride, dc[3]);
41 vp8_dc_only_idct_add_v6 (dc[3], pre+12, dst+12, 16, stride);
45 pre
15 vp8_dequant_dc_idct_add_y_block_v6(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
51 vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
98 vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *pre, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/vp8/decoder/arm/neon/
H A Didct_blk_neon.c19 (short *input, short *dq, unsigned char *pre, unsigned char *dst,
22 (short *dc, unsigned char *pre, unsigned char *dst, int stride);
24 (short *q, short *dq, unsigned char *pre, unsigned char *dst,
27 (short *q, short dq, unsigned char *pre, int pitch,
31 (short *q, short *dq, unsigned char *pre,
39 idct_dequant_dc_full_2x_neon (q, dq, pre, dst, stride, dc);
41 idct_dequant_dc_0_2x_neon(dc, pre, dst, stride);
44 idct_dequant_dc_full_2x_neon (q+32, dq, pre+8, dst+8, stride, dc+2);
46 idct_dequant_dc_0_2x_neon(dc+2, pre+8, dst+8, stride);
50 pre
30 vp8_dequant_dc_idct_add_y_block_neon(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
56 vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
81 vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *pre, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/vp8/decoder/
H A Didct_blk.c24 (short *q, short *dq, unsigned char *pre,
34 vp8_dequant_dc_idct_add_c (q, dq, pre, dst, 16, stride, dc[0]);
36 vp8_dc_only_idct_add_c (dc[0], pre, dst, 16, stride);
39 pre += 4;
44 pre += 64 - 16;
50 (short *q, short *dq, unsigned char *pre,
60 vp8_dequant_idct_add_c (q, dq, pre, dst, 16, stride);
63 vp8_dc_only_idct_add_c (q[0]*dq[0], pre, dst, 16, stride);
68 pre += 4;
72 pre
23 vp8_dequant_dc_idct_add_y_block_c(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
49 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
77 vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *pre, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/vp8/decoder/x86/
H A Didct_blk_mmx.c16 (short *q, short *dq, unsigned char *pre,
24 vp8_dequant_dc_idct_add_mmx (q, dq, pre, dst, 16, stride, dc[0]);
26 vp8_dc_only_idct_add_mmx (dc[0], pre, dst, 16, stride);
29 vp8_dequant_dc_idct_add_mmx (q+16, dq, pre+4, dst+4, 16, stride, dc[1]);
31 vp8_dc_only_idct_add_mmx (dc[1], pre+4, dst+4, 16, stride);
34 vp8_dequant_dc_idct_add_mmx (q+32, dq, pre+8, dst+8, 16, stride, dc[2]);
36 vp8_dc_only_idct_add_mmx (dc[2], pre+8, dst+8, 16, stride);
39 vp8_dequant_dc_idct_add_mmx (q+48, dq, pre+12, dst+12, 16, stride, dc[3]);
41 vp8_dc_only_idct_add_mmx (dc[3], pre+12, dst+12, 16, stride);
45 pre
15 vp8_dequant_dc_idct_add_y_block_mmx(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
51 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
98 vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *pre, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
H A Didct_blk_sse2.c16 (short *q, short *dq, unsigned char *pre,
19 (short *q, short *dq, unsigned char *pre,
23 (short *q, short *dq ,unsigned char *pre,
26 (short *q, short *dq ,unsigned char *pre,
30 (short *q, short *dq, unsigned char *pre,
38 idct_dequant_dc_full_2x_sse2 (q, dq, pre, dst, stride, dc);
40 idct_dequant_dc_0_2x_sse2 (q, dq, pre, dst, stride, dc);
43 idct_dequant_dc_full_2x_sse2 (q+32, dq, pre+8, dst+8, stride, dc+2);
45 idct_dequant_dc_0_2x_sse2 (q+32, dq, pre+8, dst+8, stride, dc+2);
49 pre
29 vp8_dequant_dc_idct_add_y_block_sse2(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
55 vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
80 vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *pre, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/v8/src/
H A Ddateparser.cc162 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) { argument
167 pre[j] == static_cast<uint32_t>(array[i][j])) {
/external/valgrind/main/memcheck/tests/
H A Dwrap8.c15 Note, pre() and post() used so as to avoid printf, which messes
38 static void pre ( char* s, int n );
63 pre("wrapper1", n);
77 pre("wrapper2", n);
112 static void pre ( char* s, int n ) function
119 send("-pre: fact(");
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/
H A DSDL_mintaudio_xbios.c201 static void Devconnect2(int src, int dst, int sclk, int pre) argument
250 pre<<=8;
255 sync_div |= pre;
/external/openssl/crypto/ec/
H A Dec_mult.c87 EC_POINT **points; /* array with pre-calculated multiples of generator:
135 EC_PRE_COMP *pre = pre_; local
137 if (!pre)
140 i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
144 if (pre->points)
148 for (p = pre->points; *p != NULL; p++)
150 OPENSSL_free(pre->points);
152 OPENSSL_free(pre);
158 EC_PRE_COMP *pre = pre_; local
160 if (!pre)
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttree.py1244 def pre(t): function in function:TestTreeVisitor.testTreeVisitor
1245 found.append("pre(%s)" % t)
1252 visitor.visit(t, pre, post)
1254 expecting = [ "pre(PRINT)", "pre(MULT)", "pre(x)", "post(x)",
1255 "pre(VEC)", "pre(MULT)", "pre(9)", "post(9)", "pre(
[all...]
/external/icu4c/common/
H A Ducnv_ext.c115 * - the first character is in pre
121 const char *pre, int32_t preLength,
177 /* match pre[] then src[] */
179 b=(uint8_t)pre[i++];
500 * @param pre UChars that must match; !initialMatch: partial match with them
501 * @param preLength length of pre, >=0
520 const UChar *pre, int32_t preLength,
592 /* match pre[] then src[] */
594 c=pre[i++];
120 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, const char *pre, int32_t preLength, const char *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
518 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
/external/libvpx/vp8/encoder/
H A Dtemporal_filter.c172 int pre = d->pre; local
182 d->pre = mb_offset;
272 d->pre = pre;
304 unsigned char *y_buffer = mbd->pre.y_buffer;
305 unsigned char *u_buffer = mbd->pre.u_buffer;
306 unsigned char *v_buffer = mbd->pre.v_buffer;
467 mbd->pre.y_buffer = y_buffer;
468 mbd->pre
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcproc.c656 vg_atfork_t pre; member in struct:atfork
666 void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child) argument
671 if (atforks[i].pre == pre &&
681 atforks[n_atfork].pre = pre;
693 if (atforks[i].pre != NULL)
694 (*atforks[i].pre)(tid);
/external/libvpx/vp8/common/
H A Dblockd.h200 int pre; member in struct:__anon6866
225 YV12_BUFFER_CONFIG pre; /* Filtered copy of previous frame reconstruction */ member in struct:__anon6867
/external/regex-re2/re2/
H A Dcompile.cc857 static bool IsAnchorStart(Regexp** pre, int depth) { argument
858 Regexp* re = *pre;
877 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
888 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
895 *pre = Regexp::LiteralString(NULL, 0, re->parse_flags());
905 static bool IsAnchorEnd(Regexp** pre, int depth) { argument
906 Regexp* re = *pre;
925 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags());
936 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
943 *pre
[all...]
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php136 '<p> </p> <pre> </pre> <ol> </ol> <ul> </ul> <li> </li>');
143 if (!preg_match('{^$|^<(p|ul|ol|dl|pre|blockquote)>}i', $text)) {
403 $block_tags_b_re = 'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|address|'.
1090 # Process Markdown `<pre><code>` blocks.
1115 $codeblock = "<pre><code>$codeblock\n</code></pre>";
1313 # These leading spaces cause problem with <pre> content,
1315 $bq = preg_replace_callback('{(\s*<pre>.+?</pre>)}s
1321 $pre = $matches[1]; variable
1322 $pre = preg_replace('/^ /m', '', $pre); variable
[all...]
/external/mdnsresponder/mDNSShared/
H A DDebugServices.c1351 char pre[4] = ""; local
1384 pre[0] = '['; pre[1] = '\0';
1406 pre, a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8],
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_isel.c1592 HReg pre = iselIntExpr_R(env, e->Iex.Unop.arg); local
1593 addInstr(env, mk_iMOVsd_RR(pre,src));
/external/webkit/Source/WebCore/rendering/
H A DRenderInline.cpp369 RenderBlock* pre = 0; local
378 pre = block;
379 pre->removePositionedObjects(0);
383 pre = block->createAnonymousBlock();
389 RenderObject* boxFirst = madeNewBeforeBlock ? block->firstChild() : pre->nextSibling();
391 block->children()->insertChildNode(block, pre, boxFirst);
401 pre->children()->appendChildNode(pre, block->children()->removeChildNode(block, no));
406 splitInlines(pre, post, newBlockBox, beforeChild, oldCont);
418 // get deleted properly. Because objects moves from the pre bloc
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dtls_openssl.c537 * @pre: an array of commands and values that load an engine initialized
547 static int tls_engine_load_dynamic_generic(const char *pre[], argument
570 /* Perform the pre commands. This will load the engine. */
571 while (pre && pre[0]) {
572 wpa_printf(MSG_DEBUG, "ENGINE: '%s' '%s'", pre[0], pre[1]);
573 if (ENGINE_ctrl_cmd_string(engine, pre[0], pre[1], 0) == 0) {
575 "%s %s [%s]", pre[
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c541 * @pre: an array of commands and values that load an engine initialized
551 static int tls_engine_load_dynamic_generic(const char *pre[], argument
574 /* Perform the pre commands. This will load the engine. */
575 while (pre && pre[0]) {
576 wpa_printf(MSG_DEBUG, "ENGINE: '%s' '%s'", pre[0], pre[1]);
577 if (ENGINE_ctrl_cmd_string(engine, pre[0], pre[1], 0) == 0) {
579 "%s %s [%s]", pre[
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c541 * @pre: an array of commands and values that load an engine initialized
551 static int tls_engine_load_dynamic_generic(const char *pre[], argument
574 /* Perform the pre commands. This will load the engine. */
575 while (pre && pre[0]) {
576 wpa_printf(MSG_DEBUG, "ENGINE: '%s' '%s'", pre[0], pre[1]);
577 if (ENGINE_ctrl_cmd_string(engine, pre[0], pre[1], 0) == 0) {
579 "%s %s [%s]", pre[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c541 * @pre: an array of commands and values that load an engine initialized
551 static int tls_engine_load_dynamic_generic(const char *pre[], argument
574 /* Perform the pre commands. This will load the engine. */
575 while (pre && pre[0]) {
576 wpa_printf(MSG_DEBUG, "ENGINE: '%s' '%s'", pre[0], pre[1]);
577 if (ENGINE_ctrl_cmd_string(engine, pre[0], pre[1], 0) == 0) {
579 "%s %s [%s]", pre[
[all...]

Completed in 482 milliseconds

12