HomeSort by relevance Sort by last modified time
    Searched refs:consts (Results 51 - 75 of 136) sorted by null

1 23 4 5 6

  /external/mesa3d/src/mesa/main/
context.h 143 _mesa_init_constants(struct gl_constants *consts, gl_api api);
  /external/python/cpython2/Objects/
funcobject.c 17 PyObject *consts; local
28 consts = ((PyCodeObject *)code)->co_consts;
29 if (PyTuple_Size(consts) >= 1) {
30 doc = PyTuple_GetItem(consts, 0);
  /external/mesa3d/src/mesa/state_tracker/
st_manager.c 929 struct gl_constants consts = {0}; local
933 if (_mesa_override_gl_version_contextless(&consts, &api, &version)) {
937 _mesa_init_constants(&consts, api);
940 st_init_limits(screen, &consts, &extensions);
941 st_init_extensions(screen, &consts, &extensions, options, GL_TRUE);
943 return _mesa_get_version(&extensions, &consts, api);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /external/python/cpython2/Lib/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 8 from compiler.consts \
269 self.consts = []
408 self.consts.insert(0, self.docstring)
453 return self._lookupName(arg, self.consts)
553 for elt in self.consts:
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 151 struct gl_constants consts = { 0 }; local
156 if (_mesa_override_gl_version_contextless(&consts, &api, &version))
160 if (_mesa_override_gl_version_contextless(&consts, &api, &version)) {
  /external/clang/tools/scan-build-py/libscanbuild/
analyze.py 103 consts = {
114 generator = (dict(cmd, **consts)
  /prebuilts/go/darwin-x86/src/debug/pe/
section.go 42 // TODO(brainman): copy all IMAGE_REL_* consts from ldpe.go here
  /prebuilts/go/linux-x86/src/debug/pe/
section.go 42 // TODO(brainman): copy all IMAGE_REL_* consts from ldpe.go here
  /cts/suite/audio_quality/test_description/processing/
check_spectrum.py 17 from consts import *
  /cts/suite/audio_quality/test_description/
processing_main.py 23 from consts import *
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 1005 PyObject *consts = NULL; local
1025 consts = r_object(p);
1026 if (consts == NULL)
1053 code, consts, names, varnames,
1059 Py_XDECREF(consts);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 1010 PyObject *consts = NULL; local
1030 consts = r_object(p);
1031 if (consts == NULL)
1058 code, consts, names, varnames,
1064 Py_XDECREF(consts);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
marshal.c 1005 PyObject *consts = NULL; local
1025 consts = r_object(p);
1026 if (consts == NULL)
1053 code, consts, names, varnames,
1059 Py_XDECREF(consts);
    [all...]
  /external/python/cpython2/Python/
marshal.c 1004 PyObject *consts = NULL; local
1024 consts = r_object(p);
1025 if (consts == NULL)
1052 code, consts, names, varnames,
1058 Py_XDECREF(consts);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
GlslangToSpv.cpp     [all...]
  /external/libcups/cups/
ppd.c 189 ppd_free(ppd->consts);
273 _ppd_cups_uiconsts_t *consts; /* Current constraints */ local
276 for (consts = (_ppd_cups_uiconsts_t *)cupsArrayFirst(ppd->cups_uiconstraints);
277 consts;
278 consts = (_ppd_cups_uiconsts_t *)cupsArrayNext(ppd->cups_uiconstraints))
280 free(consts->constraints);
281 free(consts);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_sse.c 81 static float consts[NUM_CONSTS][4] = { variable
103 PIPE_ALIGN_VAR(16) float consts[NUM_CONSTS][4]; member in struct:translate_sse
170 get_offset(p, &p->consts[id][0])));
    [all...]
  /external/v8/tools/
js2c.py 352 (consts, macros) = ReadMacros(ReadFile(macro_filename))
354 filter_chain.append(lambda l: ExpandConstants(l, consts))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
astgen.py 243 from consts import CO_VARARGS, CO_VARKEYWORDS

Completed in 771 milliseconds

1 23 4 5 6