HomeSort by relevance Sort by last modified time
    Searched defs:ml (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/syslinux/com32/lib/syslinux/
addlist.c 34 struct syslinux_movelist *ml = malloc(sizeof(struct syslinux_movelist)); local
35 if (!ml)
38 ml->dst = dst;
39 ml->src = src;
40 ml->len = len;
41 ml->next = *list;
43 *list = ml;
shuffle.c 65 struct syslinux_memmap *rxmap = NULL, *ml; local
83 for (ml = memmap; ml->type != SMT_END; ml = ml->next) {
84 if (ml->type == SMT_ZERO)
186 for (ml = memmap; ml->type != SMT_END; ml = ml->next)
    [all...]
zonelist.c 304 struct syslinux_memmap *ml; local
307 ml = list;
309 free(ml);
319 struct syslinux_memmap *ml; local
322 ml = malloc(sizeof(*ml));
323 if (!ml) {
327 ml->start = list->start;
328 ml->type = list->type;
329 ml->next = NULL
    [all...]
load_linux.c 389 struct syslinux_memmap *ml; local
393 for (ml = amap; ml->type != SMT_END; ml = ml->next) {
394 addr_t adj_start = (ml->start + align_mask) & ~align_mask;
395 addr_t adj_end = ml->next->start & ~align_mask;
396 if (ml->type == SMT_FREE && adj_end - adj_start >= irf_size)
424 struct syslinux_memmap *ml; local
438 for (ml = amap; ml->type != SMT_END; ml = ml->next)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5.cpp 27 auto ml = [=]() mutable{}; // expected-note{{method is not marked const}} \ local
29 const decltype(ml) mlc = ml;
30 ml();
35 volatile decltype(ml) mlv = ml;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_getmaps/
rpc_pmap_getmaps.c 50 struct pmaplist *ml = NULL; local
62 ml = pmap_getmaps(&sin);
65 printf("List. %p\n", ml);
69 test_status = (ml == NULL);
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 119 Mock_ListIterator ml = new Mock_ListIterator(); local
121 ml.remove();
194 Mock_ListIterator ml = new Mock_ListIterator(); local
195 ml.next();
197 ml.set("Wrong element");
204 ml.set(new Double("3.14"));
211 ml.set("");
221 Mock_ListIterator ml = new Mock_ListIterator(); local
222 ml.next();
224 ml.add("Wrong element")
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
huffman_bit_writer_test.go 104 const ml = 0x7fc00000 // Maximum length token. Used to reduce the size of writeBlockTests const
111 tokens: []token{0x0, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, m (…)
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
huffman_bit_writer_test.go 104 const ml = 0x7fc00000 // Maximum length token. Used to reduce the size of writeBlockTests const
111 tokens: []token{0x0, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, ml, m (…)
    [all...]
  /external/toybox/toys/lsb/
umount.c 110 struct mtab_list *mlsave = 0, *mlrev = 0, *ml; local
130 for (ml = mlrev; ml; ml = ml->prev)
131 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags);
140 for (ml = abs ? mlrev : 0; ml; ml = ml->prev)
    [all...]
  /external/syslinux/com32/modules/
pmload.c 63 struct syslinux_movelist *ml = NULL; local
100 if (syslinux_add_movelist(&ml, where, (addr_t) ptr, len))
164 if (syslinux_add_movelist(&ml, stack_pointer, (addr_t) stack_frame,
179 syslinux_dump_movelist(ml);
183 syslinux_shuffle_boot_pm(ml, mmap, 0, &regs);
190 syslinux_free_movelist(ml);
elf.c 65 struct syslinux_movelist *ml = NULL; local
153 (&ml, addr, (addr_t) cptr + ph->p_offset, dsize))
230 if (syslinux_add_movelist(&ml, stack_pointer, (addr_t) stack_frame,
245 syslinux_dump_movelist(ml);
249 syslinux_shuffle_boot_pm(ml, mmap, 0, &regs);
256 syslinux_free_movelist(ml);
sdi.c 71 struct syslinux_movelist *ml = NULL; local
113 if (syslinux_add_movelist(&ml, 0x7c00, (addr_t) ptr + hdr->BootCodeOffset,
124 if (syslinux_add_movelist(&ml, SDI_LOAD_ADDR, (addr_t) ptr, len))
134 syslinux_shuffle_boot_rm(ml, mmap, 0, &regs);
139 syslinux_free_movelist(ml);
  /external/syslinux/com32/mboot/
map.c 37 static struct syslinux_movelist *ml = NULL; variable in typeref:struct:syslinux_movelist
58 syslinux_add_movelist(&ml, start, (addr_t) data, len) ||
205 (&ml, addr, (addr_t) cptr + ph->p_offset, dsize)) {
304 if (syslinux_add_movelist(&ml, mbh->load_addr, (addr_t) data_ptr,
351 syslinux_shuffle_boot_pm(ml, mmap, bootflags, &regs);
  /frameworks/base/tests/Internal/src/com/android/internal/ml/clustering/
KMeansTest.java 17 package com.android.internal.ml.clustering;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
31 op->m_ml = ml;
322 PyMethodDef *ml; local
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
337 PyList_SetItem(v, i, PyString_FromString(ml->ml_name));
368 PyMethodDef *ml = chain->methods; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
modsupport.c 36 PyMethodDef *ml; local
72 for (ml = methods; ml->ml_name != NULL; ml++) {
73 if ((ml->ml_flags & METH_CLASS) ||
74 (ml->ml_flags & METH_STATIC)) {
81 v = PyCFunction_NewEx(ml, passthrough, n);
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
31 op->m_ml = ml;
322 PyMethodDef *ml; local
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
337 PyList_SetItem(v, i, PyString_FromString(ml->ml_name));
368 PyMethodDef *ml = chain->methods; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
modsupport.c 36 PyMethodDef *ml; local
72 for (ml = methods; ml->ml_name != NULL; ml++) {
73 if ((ml->ml_flags & METH_CLASS) ||
74 (ml->ml_flags & METH_STATIC)) {
81 v = PyCFunction_NewEx(ml, passthrough, n);
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {
  /external/clang/test/SemaCXX/
class.cpp 118 mutable int ml; // expected-error {{'mutable' can only be applied to member variables}} local
  /external/python/cpython2/Objects/
methodobject.c 17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
31 op->m_ml = ml;
322 PyMethodDef *ml; local
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
337 PyList_SetItem(v, i, PyString_FromString(ml->ml_name))
368 PyMethodDef *ml = chain->methods; local
    [all...]
  /external/python/cpython2/Python/
modsupport.c 36 PyMethodDef *ml; local
72 for (ml = methods; ml->ml_name != NULL; ml++) {
73 if ((ml->ml_flags & METH_CLASS) ||
74 (ml->ml_flags & METH_STATIC)) {
81 v = PyCFunction_NewEx(ml, passthrough, n);
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {
  /external/syslinux/gpxe/src/crypto/axtls/
aes.c 47 #define ml 0x7f7f7f7f macro
  /external/syslinux/memdisk/
inflate.c 502 unsigned ml, md; /* masks for bl and bd bits */ local
512 ml = mask_bits[bl]; /* precompute masks for speed */
516 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16)
  /external/tensorflow/tensorflow/core/framework/
op_gen_lib.cc 113 string* ml) {
151 strings::StrAppend(ml, up_to_colon, ": <<", end, "\n", unescaped, "\n", end);
154 strings::StrAppend(ml, suffix);
156 strings::StrAppend(ml, "\n");
162 string ml; local
165 ml.reserve(pbtxt.size() * (17. / 16));
171 if (!ConvertLine(line, multi_line_fields, &ml)) {
172 strings::StrAppend(&ml, line, "\n");
175 return ml;

Completed in 451 milliseconds

1 2 3