Searched defs:be (Results 1 - 25 of 40) sorted by relevance

12

/external/libvpx/vp8/encoder/
H A Dencodeintra.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
33 void vp8_encode_intra4x4block(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x, BLOCK *be, BLOCKD *b, int best_mode) argument
37 ENCODEMB_INVOKE(&rtcd->encodemb, subb)(be, b, 16);
39 x->vp8_short_fdct4x4(be->src_diff, be->coeff, 32);
41 x->quantize_b(be, b);
57 BLOCK *be = &mb->block[i]; local
60 vp8_encode_intra4x4block(rtcd, mb, be,
[all...]
H A Dencodemb.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
28 void vp8_subtract_b_c(BLOCK *be, BLOCKD *bd, int pitch) argument
30 unsigned char *src_ptr = (*(be->base_src) + be->src);
31 short *diff_ptr = be->src_diff;
33 int src_stride = be->src_stride;
H A Dpickinter.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
152 static int get_prediction_error(BLOCK *be, BLOCKD *b, const vp8_variance_rtcd_vtable_t *rtcd) argument
156 sptr = (*(be->base_src) + be->src);
159 return VARIANCE_INVOKE(rtcd, get4x4sse_cs)(sptr, be->src_stride, dptr, 16, 0x7fffffff);
166 BLOCK *be,
196 distortion = get_prediction_error(be, b, &rtcd->variance);
209 vp8_encode_intra4x4block(rtcd, x, be,
163 pick_intra4x4block( const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x, BLOCK *be, BLOCKD *b, B_PREDICTION_MODE *best_mode, B_PREDICTION_MODE above, B_PREDICTION_MODE left, int *bestrate, int *bestdistortion) argument
[all...]
H A Dfirstpass.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
104 BLOCK *be = &x->block[i]; local
106 vp8_encode_intra4x4block(IF_RTCD(&cpi->rtcd), x, be, b, B_DC_PRED);
898 // Try and pick a max Q that will be high enough to encode the
1051 // Try and pick a Q that should be high enough to encode the content at the given rate.
1186 // isn't guaranteed to be constant. The frame rate prior to the first frame
1197 // Calculate a minimum intra value to be used in determining the IIratio
1383 // Note the error of the frame at the start of the group (this will be
[all...]
H A Drdopt.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
399 BLOCK *be; local
406 be = &mb->block[i];
413 int this_diff = be->coeff[j] - bd->dqcoeff[j];
426 BLOCK *be; local
435 be = &mb->block[i];
438 error += vp8_block_error_c(be->coeff, bd->dqcoeff);
599 BLOCK *be,
596 rd_pick_intra4x4block( VP8_COMP *cpi, MACROBLOCK *x, BLOCK *be, BLOCKD *b, B_PREDICTION_MODE *best_mode, unsigned int *bmode_costs, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, int *bestrate, int *bestratey, int *bestdistortion) argument
985 BLOCK *be = &x->block[i]; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-bsf.jar ... .BSFManager m org.apache.bsf.BSFException be String execName ClassLoader origLoader public java.lang.Object ...
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/ppp/pppd/plugins/pppoatm/
H A Dpppoatm.c110 struct atm_backend_ppp be; local
111 be.backend_num = ATM_BACKEND_PPP;
113 be.encaps = PPPOATM_ENCAPS_VC;
115 be.encaps = PPPOATM_ENCAPS_LLC;
117 be.encaps = PPPOATM_ENCAPS_AUTODETECT;
118 if (ioctl(fd, ATM_SETBACKEND, &be) < 0)
125 atm_backend_t be = ATM_BACKEND_RAW;
127 (void) ioctl(fd, ATM_SETBACKEND, &be);
/external/ipsec-tools/src/racoon/
H A Dprivsep.c18 * may be used to endorse or promote products derived from this software
1099 char *const *be; local
1103 for (be = bad_env; *be; be++) {
1104 if (strncmp(*e, *be, strlen(*be)) == 0) {
/external/libvpx/vp8/encoder/x86/
H A Dx86_csystemdependent.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
72 static void subtract_b_mmx(BLOCK *be, BLOCKD *bd, int pitch) argument
74 unsigned char *z = *(be->base_src) + be->src;
75 unsigned int src_stride = be->src_stride;
76 short *diff = &be->src_diff[0];
128 static void subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch) argument
130 unsigned char *z = *(be
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_resampler.c5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
83 float be, tnew, interp; local
96 be = 1 + skew;
102 tnew = be * mm + obj->position;
120 tnew = be * mm + obj->position;
125 obj->position += outsize * be - size;
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp245 // In the future it might be worth trying to make these operations more well
350 // FIXME: Should this be caught and done earlier?
420 const MCBinaryExpr *be = cast<MCBinaryExpr>(expr); local
421 fixSymbolsInTLSFixups(be->getLHS());
422 fixSymbolsInTLSFixups(be->getRHS());
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_roboswitch.c9 * Alternatively, this software may be distributed under the terms of BSD
87 static void wpa_driver_roboswitch_addr_be16(const u8 addr[ETH_ALEN], u16 *be) argument
91 be[(ETH_ALEN - i) / 2 - 1] = WPA_GET_BE16(addr + i);
411 /* set and read back to see if the register can be used */
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_roboswitch.c5 * This software may be distributed under the terms of the BSD license.
77 static void wpa_driver_roboswitch_addr_be16(const u8 addr[ETH_ALEN], u16 *be) argument
81 be[(ETH_ALEN - i) / 2 - 1] = WPA_GET_BE16(addr + i);
408 /* set and read back to see if the register can be used */
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_roboswitch.c5 * This software may be distributed under the terms of the BSD license.
77 static void wpa_driver_roboswitch_addr_be16(const u8 addr[ETH_ALEN], u16 *be) argument
81 be[(ETH_ALEN - i) / 2 - 1] = WPA_GET_BE16(addr + i);
408 /* set and read back to see if the register can be used */
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_roboswitch.c5 * This software may be distributed under the terms of the BSD license.
77 static void wpa_driver_roboswitch_addr_be16(const u8 addr[ETH_ALEN], u16 *be) argument
81 be[(ETH_ALEN - i) / 2 - 1] = WPA_GET_BE16(addr + i);
408 /* set and read back to see if the register can be used */
/external/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp3 // FIXME: The padding in all these objects should be zero-initialized.
179 extern constexpr int (B1::*be) = (int(B1::*))&C::e; member in namespace:MemberPtr
437 // we're permitted to emit a load of it. This seems likely to be a defect
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp84 // These values are defined in such a way that a merge can be done using
289 /// DeclRefExpr which isn't explicitly classified will be assumed to have
290 /// escaped the analysis and will be treated as an initialization.
428 void VisitBlockExpr(BlockExpr *be);
450 // the variable, we can say something stronger than 'may be uninitialized':
455 // the variable might still be uninitialized are followed. Since a variable
459 // non-termination might be correlated with the initialization condition.
548 // situations where no label matched: we can't be sure that's
553 // Might not be possible.
592 void TransferFunctions::VisitBlockExpr(BlockExpr *be) { argument
[all...]
/external/opencv/cvaux/src/
H A Dcveigenobjects.cpp26 // * The name of Intel Corporation may not be used to endorse or promote products
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
204 // covarMatrix - covariance matrix (output parameter; must be allocated
444 // be allocated in the RAM or be read from/written to the HDD (or any
446 // value of ioFlags paramater, which may be the following:
452 // The callback functions as well as the user data structure must be
462 // must be CV_TERMCRIT_NUMB, CV_TERMCRIT_EPS or
466 // 4. eigVals may be equal to NULL (if you don't need eigen values in further).
733 float *be local
764 float *be = ((float *) buffer) + ((ie - imin) * eigStep); local
788 float *be = ((float **) output)[i]; local
820 float *be = ((float **) output)[i]; local
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm_unittest.py15 # contributors may be used to endorse or promote products derived from
49 from webkitpy.common.config.committers import Committer # FIXME: This should not be needed namespace
50 from webkitpy.common.net.bugzilla import Attachment # FIXME: This should not be needed namespace
58 # FIXME: This should be unified into one of the executive.py commands!
84 # We use this wrapper to disable output decoding. diffs should be treated as
117 # This used to be the last commit, but doing so broke
122 # Slash should always be the right path separator since we use cygwin on Windows.
176 # Now that we've deleted the checkout paths, cwddir may be invalid
276 # GitTest and SVNTest inherit from this so any test_ methods here will be run once for this class and then once for each subclass.
296 # FIXME: There must be
[all...]
/external/tcpdump/
H A Dprint-snmp.c272 * and by right shouldn't be an "include" file.
277 * This defines a list of OIDs which will be abbreviated on output.
328 struct be { struct
406 asn1_parse(register const u_char *p, u_int len, struct be *elem)
420 * it would be nice to use a bit field, but you can't depend on them.
662 * This used to be an integral part of asn1_parse() before the intermediate
666 asn1_print(struct be *elem)
831 fputs("[be!?]", stdout);
854 struct be elem;
879 int be; member in struct:smi2be
937 smi_check_type(SmiBasetype basetype, int be) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.cpp30 * appropriate depends on the compiler; for this to work, it may be
52 * we can represent 10^k exactly), we may be able to
112 * An alternative that might be better on some machines is
161 // 64-bit emulation provided by the compiler is likely to be slower than dtoa own code on 32-bit hardware.
1109 /* special case -- power of FLT_RADIX to be */
1290 * 3. Under the assumption that input will be rounded nearest,
1315 // Exactly one rounding mode must be specified.
1322 int bbits, b2, b5, be, dig, i, ieps, ilim = 0, ilim0, ilim1 = 0, local
1355 d2b(b, &u, &be, &bbits);
1371 * We want k to be to
[all...]
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc29 * appropriate depends on the compiler; for this to work, it may be
52 * we can represent 10^k exactly), we may be able to
76 * is also #defined, fegetround() will be queried for the rounding mode.
78 * standard (and are specified to be consistent, with fesetround()
96 * something other than "long long", #define Llong to be the name,
98 * Llong, #define #ULLong to be the corresponding unsigned type.
105 * appropriate. If MALLOC is undefined, malloc will be invoked
107 * want something other than the system's free() to be called to
108 * recycle memory acquired from MALLOC, #define FREE to be the
115 * unless #defined to be
3564 int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, variable
[all...]
/external/kernel-headers/original/linux/
H A Dwanrouter.h31 * Oct 20, 1997 Jaspreet Singh Added 'cir','bc','be' and 'mc' to 'wanif_conf_t'
402 unsigned be; /* Excess Burst Size fwd, bwd */ member in struct:wanif_conf
523 /* Proc interface functions. These must not be called by the drivers! */
/external/qemu/hw/
H A Dusb-ohci.c12 * This library is distributed in the hope that it will be useful,
23 * o Disable timers when nothing needs to be done, or remove timer usage
202 uint32_t be; member in struct:ohci_td
210 uint32_t be; member in struct:ohci_iso_td
563 ptr = td->be & ~0xfffu;
640 iso_td.flags, iso_td.bp, iso_td.next, iso_td.be,
687 if (!iso_td.bp || !iso_td.be) {
688 printf("usb-ohci: ISO_TD bp 0x%.8x be 0x%.8x\n", iso_td.bp, iso_td.be);
713 start_addr = (iso_td.be
[all...]

Completed in 2382 milliseconds

12