Searched refs:pre (Results 26 - 50 of 220) sorted by relevance

123456789

/external/v8/test/mjsunit/
H A Ddebug-stepout-scope-part6.js74 var pre = prefixes[i];
77 eval("'use strict'; " + pre + body);
H A Ddebug-stepout-scope-part7.js74 var pre = prefixes[i];
77 Function(pre + body)();
/external/vboot_reference/firmware/lib21/
H A Dapi.c45 const struct vb2_fw_preamble *pre; local
57 pre = (const struct vb2_fw_preamble *)
61 hash_offset = pre->hash_offset;
62 for (i = 0; i < pre->hash_count; i++) {
64 ((uint8_t *)pre + hash_offset);
71 if (i >= pre->hash_count)
96 if (!(pre->flags & VB2_FIRMWARE_PREAMBLE_DISALLOW_HWCRYPTO)) {
/external/vboot_reference/tests/
H A Dvb20_misc_tests.c42 struct vb2_fw_preamble pre; member in struct:__anon16902::__anon16904
62 struct vb2_fw_preamble *pre = &mock_vblock.p.pre; local
106 pre->preamble_size = sizeof(mock_vblock.p);
107 pre->firmware_version = 2;
273 struct vb2_fw_preamble *pre = &mock_vblock.p.pre; local
286 TEST_EQ(sd->workbuf_preamble_size, pre->preamble_size, "preamble size");
323 pre->preamble_size = sizeof(mock_vblock);
335 pre
[all...]
H A Dvb21_misc_tests.c45 struct vb2_fw_preamble pre; member in struct:__anon16907::__anon16909
65 struct vb2_fw_preamble *pre = &mock_vblock.p.pre; local
112 pre->c.total_size = sizeof(mock_vblock.p);
113 pre->fw_version = 2;
281 struct vb2_fw_preamble *pre = &mock_vblock.p.pre; local
292 TEST_EQ(sd->workbuf_preamble_size, pre->c.total_size, "preamble size");
332 pre->c.total_size = sizeof(mock_vblock);
344 pre
[all...]
H A Dvb20_api_tests.c53 struct vb2_fw_preamble *pre; local
76 sd->workbuf_preamble_size = sizeof(*pre);
79 pre = (struct vb2_fw_preamble *)
81 pre->body_signature.data_size = mock_body_size;
82 pre->body_signature.sig_size = mock_sig_size;
84 pre->flags = VB2_FIRMWARE_PREAMBLE_DISALLOW_HWCRYPTO;
86 pre->flags = 0;
335 struct vb2_fw_preamble *pre; local
380 pre = (struct vb2_fw_preamble *)
382 pre
[all...]
/external/lldb/examples/test/
H A Dusage-pre-post-flight2 # The following examples first show a bad pre/post flight config file followed by a good pre/post config file.
5 [11:31:19] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight.bad functionalities/watchpoint/hello_watchpoint
8 [11:32:48] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight functionalities/watchpoint/hello_watchpoint
27 print "\nRunning pre-flight function:"
38 Command invoked: python ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight functionalities/watchpoint/hello_watchpoint
47 Running pre-flight function:
55 Running pre-flight function:
/external/bzip2/
H A Dbzip.css7 #626262 dark gray pre border
8 #eeeeee very light gray pre background
64 code, tt, pre { font-size: 120%; }
67 div.literallayout, pre.programlisting, pre.screen {
/external/valgrind/docs/lib/
H A Dvg_basic.css26 pre { color: #3366cc; }
27 pre.programlisting {
33 pre.screen {
/external/valgrind/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/doclava/res/assets/templates/
H A Dsample.cs23 <pre><?cs var:fileContents ?></pre>
/external/libpng/scripts/
H A Dpnglibconf.mak42 $(DELETE) $@ pnglibconf.pre pnglibconf.tmp
45 $(AWK) -f $(srcdir)/scripts/options.awk out="pnglibconf.pre"\
48 $(AWK) -f $(srcdir)/scripts/options.awk out="pnglibconf.tmp" pnglibconf.pre 1>&2
H A Doptions.awk34 pre=-1 # preprocess (first line)
92 # The very first line indicates whether we are reading pre-processed
95 pre == -1{
97 pre = 0
100 pre = 1
106 # While pre-processing if version is set to "search" look for a version string
108 pre && version == "search" && version_file == ""{
112 pre && version == "search" && version_file != FILENAME{
118 pre && version == "search" && $0 ~ /^ \* libpng version/{
124 pre
[all...]
/external/mesa3d/docs/
H A Dmesa.css28 pre {
/external/libvpx/libvpx/vp8/encoder/
H A Dtemporal_filter.c162 unsigned char *base_pre = x->e_mbd.pre.y_buffer;
163 int pre = d->offset; local
164 int pre_stride = x->e_mbd.pre.y_stride;
177 x->e_mbd.pre.y_buffer = frame_ptr->y_buffer;
178 x->e_mbd.pre.y_stride = frame_ptr->y_stride;
217 x->e_mbd.pre.y_buffer = base_pre;
218 d->offset = pre;
219 x->e_mbd.pre.y_stride = pre_stride;
249 unsigned char *y_buffer = mbd->pre.y_buffer;
250 unsigned char *u_buffer = mbd->pre
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafMultiplier.java84 WTauNafPreCompInfo pre = new WTauNafPreCompInfo();
85 pre.setPreComp(pu);
86 curve.setPreCompInfo(p, PRECOMP_NAME, pre);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitor.java31 /** Do a depth first walk of a tree, applying pre() and post() actions
56 t = action.pre(t); // if rewritten, walk children of new t
/external/v8/test/test262/
H A Dharness-adapt.js42 this.pre = preconditionString;
/external/libnl/include/
H A Dnetlink-types.h446 #define NL_TCA_GENERIC(pre) \
448 uint32_t pre ##_family; \
449 uint32_t pre ##_ifindex; \
450 uint32_t pre ##_handle; \
451 uint32_t pre ##_parent; \
452 uint32_t pre ##_info; \
453 char pre ##_kind[TCKINDSIZ]; \
454 struct nl_data * pre ##_opts; \
455 uint64_t pre ##_stats[RTNL_TC_STATS_MAX+1]; \
456 struct nl_data * pre ##_xstat
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/jsdoc-template/static/
H A Ddefault.css33 pre.code
185 p, ul, ol, table, pre, dl {
230 code, pre {
236 pre {
407 pre, code {
/external/v8/src/arm/
H A Dconstants-arm.h173 P = 1 << 24, // Offset/pre-indexed addressing (or post-indexed addressing).
266 NegPreIndex = (8|0|1) << 21, // Negative pre-indexed with writeback.
537 inline int VFPNRegValue(VFPRegPrecision pre) { argument
538 return VFPGlueRegValue(pre, 16, 7);
540 inline int VFPMRegValue(VFPRegPrecision pre) { argument
541 return VFPGlueRegValue(pre, 0, 5);
543 inline int VFPDRegValue(VFPRegPrecision pre) { argument
544 return VFPGlueRegValue(pre, 12, 22);
646 inline int VFPGlueRegValue(VFPRegPrecision pre, int four_bit, int one_bit) { argument
647 if (pre
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c168 struct buf_2d *const pre_buf = &pd->pre[ref];
176 // scaling case. It needs to be done on the scaled MV, not the pre-scaling
184 uint8_t *pre; local
190 pre = pre_buf->buf + scaled_buffer_offset(x, y, pre_buf->stride, sf);
195 pre = pre_buf->buf + (y * pre_buf->stride + x);
202 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride
207 high_inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
211 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
215 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
299 setup_pred_plane(&pd->pre[id
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mbgraph.c94 xd->plane[0].pre[0].buf, xd->plane[0].pre[0].stride);
130 xd->plane[0].pre[0].buf, xd->plane[0].pre[0].stride);
202 xd->plane[0].pre[0].buf = golden_ref->y_buffer + mb_y_offset;
203 xd->plane[0].pre[0].stride = golden_ref->y_stride;
218 xd->plane[0].pre[0].buf = alt_ref->y_buffer + mb_y_offset;
219 xd->plane[0].pre[0].stride = alt_ref->y_stride;
251 xd->plane[0].pre[0].stride = buf->y_stride;
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/tcmalloc/
H A Dtcmalloc_instance_view.css12 white-space: pre;
/external/libvpx/
H A Dlibvpx-asm-translation.mk13 # requires 'yasm' to pre-process its assembly files.

Completed in 849 milliseconds

123456789