Home
last modified time | relevance | path

Searched refs:gr (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dpgen.c102 static void compile_rule(nfagrammar *gr, node *n);
107 nfagrammar *gr; in newnfagrammar() local
109 gr = (nfagrammar *)PyObject_MALLOC(sizeof(nfagrammar)); in newnfagrammar()
110 if (gr == NULL) in newnfagrammar()
112 gr->gr_nnfas = 0; in newnfagrammar()
113 gr->gr_nfa = NULL; in newnfagrammar()
114 gr->gr_ll.ll_nlabels = 0; in newnfagrammar()
115 gr->gr_ll.ll_label = NULL; in newnfagrammar()
116 addlabel(&gr->gr_ll, ENDMARKER, "EMPTY"); in newnfagrammar()
117 return gr; in newnfagrammar()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dpytree_idempotency.py25 gr = driver.load_grammar("Grammar.txt")
26 dr = driver.Driver(gr, convert=pytree.convert)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dhttps_svn_python_org_root.pem33 gr/c6EWtTZBzCDyUZbAEmXZ/4rzCahWqlwQ3JNgelE5tDlG+1sSPypZt90Pf6DBl
/device/generic/goldfish-opengl/system/gralloc/
Dgralloc_old.cpp1018 private_module_t *gr = (private_module_t *)module; in gralloc_register_buffer() local
1019 if (!gr) { in gralloc_register_buffer()
1074 private_module_t *gr = (private_module_t *)module; in gralloc_unregister_buffer() local
1075 if (!gr) { in gralloc_unregister_buffer()
1138 private_module_t *gr = (private_module_t *)module; in gralloc_lock() local
1139 if (!gr) { in gralloc_lock()
1307 private_module_t *gr = (private_module_t *)module; in gralloc_unlock() local
1308 if (!gr) { in gralloc_unlock()
1362 private_module_t *gr = (private_module_t *)module; in gralloc_lock_ycbcr() local
1363 if (!gr) { in gralloc_lock_ycbcr()
Dgralloc_30.cpp785 goldfish_address_space_host_malloc_buffer_manager_t(goldfish_gralloc30_module_t* gr): m_gr(gr) { in goldfish_address_space_host_malloc_buffer_manager_t() argument
952 std::unique_ptr<buffer_manager_t> create_buffer_manager(goldfish_gralloc30_module_t* gr) { in create_buffer_manager() argument
953 if (!gr) { in create_buffer_manager()
959 return std::make_unique<goldfish_address_space_host_malloc_buffer_manager_t>(gr); in create_buffer_manager()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Dpytree.py429 def convert(gr, raw_node): argument
438 if children or type in gr.number2symbol: