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

1234

/external/annotation-tools/scene-lib/src/annotations/toys/
H A DSimplerAnnotation.java6 BalanceEnum be(); method in interface:SimplerAnnotation
/external/python/cpython3/Lib/asyncio/
H A D__init__.py7 # Prefer asyncio/selectors.py over the stdlib one, as ours may be newer.
11 import selectors # Will also be exported. namespace
18 import _overlapped # Will also be exported. namespace
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
H A DCheckingBundleListener.java13 * The above copyright notice and this permission notice shall be
38 public void bundleChanged(BundleEvent be) { argument
39 eventList.add(be);
42 private void dump(BundleEvent be) { argument
43 System.out.println("BE:" + ", source " + be.getSource() + ", bundle=" + be.getBundle() + ", type=" + be.getType());
/external/syslinux/com32/libupload/
H A Dcpio.c15 int cpio_pad(struct upload_backend *be) argument
18 if (be->dbytes & 3)
19 return write_data(be, pad, -be->dbytes & 3);
24 int cpio_hdr(struct upload_backend *be, uint32_t mode, size_t datalen, argument
32 cpio_pad(be);
41 be->now, /* c_mtime */
49 rv |= write_data(be, hdr, 6+13*8);
50 rv |= write_data(be, filename, nlen);
51 rv |= cpio_pad(be);
55 cpio_mkdir(struct upload_backend *be, const char *filename) argument
60 cpio_writefile(struct upload_backend *be, const char *filename, const void *data, size_t len) argument
72 cpio_close(struct upload_backend *be) argument
[all...]
H A Dzout.c16 int init_data(struct upload_backend *be, const char *argv[]) argument
18 be->now = posix_time();
19 be->argv = argv;
21 memset(&be->zstream, 0, sizeof be->zstream);
23 be->zstream.next_out = NULL;
24 be->outbuf = NULL;
25 be->zstream.avail_out = be->alloc = 0;
26 be
36 do_deflate(struct upload_backend *be, int flush) argument
58 write_data(struct upload_backend *be, const void *buf, size_t len) argument
78 flush_data(struct upload_backend *be) argument
[all...]
H A Dupload_srec.c46 static int upload_srec_write(struct upload_backend *be) argument
52 buf = be->outbuf;
53 len = be->zbytes;
58 be->argv[0] ? be->argv[0] : "");
H A Dupload_ymodem.c101 static int upload_ymodem_write(struct upload_backend *be) argument
111 buf = be->outbuf;
112 len = be->zbytes;
120 if (serial_init(&ym.serial, &be->argv[1]))
136 be->argv[0], 0, be->zbytes, be->now);
H A Dupload_tftp.c123 static int upload_tftp_write(struct upload_backend *be) argument
132 const char *data = be->outbuf;
133 size_t len = be->zbytes;
143 if (be->argv[1]) {
144 tftp.srv_ip = pxe_dns(be->argv[1]);
146 // printf("\nUnable to resolve hostname: %s\n", be->argv[1]);
165 nlen = strlcpy(buffer+2, be->argv[0], 512);
/external/syslinux/com32/sysdump/
H A Dmain.c34 static void dump_all(struct upload_backend *be, const char *argv[]) argument
36 cpio_init(be, argv);
38 cpio_writefile(be, "sysdump", version, sizeof version-1);
40 dump_memory_map(be);
41 dump_memory(be);
42 dump_dmi(be);
43 dump_acpi(be);
44 dump_cpuid(be);
45 dump_pci(be);
46 dump_vesa_tables(be);
62 struct upload_backend **bep, *be; local
73 struct upload_backend **bep, *be; local
[all...]
H A Dmemmap.c18 static void dump_e820(struct upload_backend *be) argument
59 cpio_writefile(be, "memmap/15e820", buf, nentry*sizeof *buf);
65 void dump_memory_map(struct upload_backend *be) argument
69 cpio_mkdir(be, "memmap");
73 cpio_writefile(be, "memmap/12", &oreg, sizeof oreg);
78 cpio_writefile(be, "memmap/1588", &oreg, sizeof oreg);
83 cpio_writefile(be, "memmap/15e801", &oreg, sizeof oreg);
85 dump_e820(be);
H A Dmemory.c31 static void dump_memory_range(struct upload_backend *be, const void *where, argument
37 cpio_writefile(be, filename, where, len);
40 void dump_memory(struct upload_backend *be) argument
44 cpio_mkdir(be, "memory");
47 dump_memory_range(be, lowmem, zero_addr, lowmem_len);
H A Dvesa.c6 void dump_vesa_tables(struct upload_backend *be) argument
37 cpio_mkdir(be, "vesa");
39 cpio_writefile(be, "vesa/global.bin", &gi, sizeof gi);
51 /* Must be a supported mode */
58 cpio_writefile(be, modefile, &mi, sizeof mi);
H A Dcpuid.c42 void dump_cpuid(struct upload_backend *be) argument
97 cpio_writefile(be, "cpuid", buf, nentry*sizeof *buf);
H A Dpci.c11 static void dump_pci_device(struct upload_backend *be, pciaddr_t a, uint8_t hdrtype) argument
30 cpio_writefile(be, filename, data, sizeof data);
33 void dump_pci(struct upload_backend *be) argument
45 cpio_mkdir(be, "pci");
63 dump_pci_device(be, a, hdrtype);
H A Ddmi.c62 static void dump_smbios(struct upload_backend *be, size_t dptr) argument
70 cpio_hdr(be, MODE_FILE, smb->dmi.tbllen + 32, filename);
73 * Adjust the address of the smbios table to be 32, to
80 write_data(be, &smx, sizeof smx);
81 write_data(be, (const void *)smb->dmi.tbladdr, smb->dmi.tbllen);
84 static void dump_old_dmi(struct upload_backend *be, size_t dptr) argument
95 cpio_hdr(be, MODE_FILE, dmi->tbllen + 32, filename);
98 * Adjust the address of the smbios table to be 32, to
106 write_data(be, &fake, sizeof fake);
107 write_data(be, (cons
110 dump_dmi(struct upload_backend *be) argument
[all...]
/external/toolchain-utils/automation/server/monitor/
H A Dmanage.py11 import settings # Assumed to be in the same directory. namespace
/external/libvpx/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.
48 BLOCK *be = &x->block[ib]; local
58 vp8_subtract_b(be, b, 16);
60 x->short_fdct4x4(be->src_diff, be->coeff, 32);
62 x->quantize_b(be, b);
/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/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeTraverserTest.java109 static final BinaryTree be = new BinaryTree('e', null, bf); field in class:TreeTraverserTest
110 static final BinaryTree bd = new BinaryTree('d', bb, be);
/external/guava/guava-tests/test/com/google/common/collect/
H A DTreeTraverserTest.java111 static final BinaryTree be = new BinaryTree('e', null, bf); field in class:TreeTraverserTest
112 static final BinaryTree bd = new BinaryTree('d', bb, be);
/external/libvpx/libvpx/vp8/encoder/mips/msa/
H A Dencodeopt_msa.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.
42 BLOCK *be; local
59 be = &mb->block[2 * loop_cnt];
61 coeff_ptr = be->coeff;
69 be = &mb->block[2 * loop_cnt + 1];
71 coeff_ptr = be->coeff;
108 BLOCK *be; local
119 be
[all...]
/external/autotest/utils/
H A Drun_pylint.py27 print ("Unable to import pylint, it may need to be installed." namespace
45 @param path: optional list of paths where module should be searched for.
60 # need to put autotest root dir on sys.path so pylint will be happy
68 # are imported for their side-effects and are not meant to be used.
295 needs to be edited. If the options are already a part of
394 # W0611: All imported modules (except common) need to be used.
401 # this stage anyone who makes a tiny change to a file will be tasked with
429 # run_pylint can be invoked directly with command line arguments,
/external/clang/test/CodeGenCXX/
H A Ddynamic-cast-hint.cpp45 volatile E *be = dynamic_cast<E *>(b); local
/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c.c903 uint32_t be, le; local
905 be = ext2fs_crc32_be(t->crc, test_buf + t->start, t->length);
911 if (be != t->crc32_be) {
913 (int) (t - test), be, t->crc32_be);
/external/fio/
H A Dlibfio.c14 * This program is distributed in the hope that it will be useful,
322 int le = 0, be = 0; local
326 be = 1;
331 if (be)
340 if (!le && !be)
352 * We need these to be properly 64-bit aligned, otherwise we

Completed in 518 milliseconds

1234