Searched defs:globals (Results 1 - 25 of 57) sorted by relevance

123

/external/freetype/src/autofit/
H A Dafloader.h41 AF_FaceGlobals globals; member in struct:AF_LoaderRec_
H A Dafglobal.c135 af_face_globals_compute_style_coverage( AF_FaceGlobals globals )
138 FT_Face face = globals->face;
140 FT_UShort* gstyles = globals->glyph_styles;
147 for ( i = 0; i < (FT_UInt)globals->glyph_count; i++ )
181 globals->module->default_script )
195 gindex < (FT_ULong)globals->glyph_count &&
206 if ( gindex < (FT_ULong)globals->glyph_count &&
224 gindex < (FT_ULong)globals->glyph_count &&
235 if ( gindex < (FT_ULong)globals->glyph_count &&
244 af_shaper_get_coverage( globals, style_clas
342 AF_FaceGlobals globals = NULL; local
[all...]
H A Dafglobal.h63 * Default values and flags for both autofitter globals (found in
64 * AF_ModuleRec) and face globals (in AF_FaceGlobalsRec).
153 af_face_globals_get_metrics( AF_FaceGlobals globals,
159 af_face_globals_free( AF_FaceGlobals globals ); variable
162 af_face_globals_is_digit( AF_FaceGlobals globals,
H A Dafmodule.c79 AF_FaceGlobals globals; local
85 globals = (AF_FaceGlobals)face->autohint.data;
86 if ( !globals )
90 error = af_face_globals_new( face, &globals, module );
94 (FT_Pointer)globals;
101 *aglobals = globals;
191 AF_FaceGlobals globals; local
201 error = af_property_get_face_globals( prop->face, &globals, module );
203 globals->increase_x_height = prop->limit;
347 AF_FaceGlobals globals; local
379 AF_FaceGlobals globals; local
[all...]
H A Dafshaper.c100 af_shaper_get_coverage( AF_FaceGlobals globals, argument
125 if ( !globals || !style_class || !gstyles )
128 face = hb_font_get_face( globals->hb_font );
278 hb_codepoint_t gidx = FT_Get_Char_Index( globals->face, ch );
367 if ( idx >= (hb_codepoint_t)globals->glyph_count )
462 upem = (FT_Int)metrics->globals->face->units_per_EM;
466 font = metrics->globals->hb_font;
493 hb_buffer_t* hb_buf = metrics->globals->hb_buf;
577 af_shaper_get_coverage( AF_FaceGlobals globals, argument
582 FT_UNUSED( globals );
[all...]
H A Dafloader.c41 /* Reset glyph loader and compute globals if necessary. */
52 loader->globals = (AF_FaceGlobals)face->autohint.data;
54 if ( !loader->globals )
56 error = af_face_globals_new( face, &loader->globals, module );
60 (FT_Pointer)loader->globals;
76 loader->globals = NULL;
97 AF_FaceGlobals globals = loader->globals; local
106 globals->stem_darkening_for_ppem;
140 ( stdVW > 0 && stdVW != globals
236 AF_FaceGlobals globals = loader->globals; local
[all...]
H A Daftypes.h479 AF_FaceGlobals globals; /* to access properties */ member in struct:AF_StyleMetricsRec_
/external/freetype/src/cid/
H A Dcidobjs.c141 PSH_Globals globals; local
147 error = funcs->create( cidsize->face->memory, priv, &globals );
149 cidsize->internal->module_data = globals;
/external/skia/src/views/
H A DSkEventSink.cpp32 SkEventSink_Globals& globals = getGlobals(); local
34 globals.fSinkMutex.acquire();
36 fID = ++globals.fNextSinkID;
37 fNextSink = globals.fSinkHead;
38 globals.fSinkHead = this;
40 globals.fSinkMutex.release();
44 SkEventSink_Globals& globals = getGlobals(); local
46 globals.fSinkMutex.acquire();
48 SkEventSink* sink = globals.fSinkHead;
57 globals
[all...]
/external/skqp/src/views/
H A DSkEventSink.cpp32 SkEventSink_Globals& globals = getGlobals(); local
34 globals.fSinkMutex.acquire();
36 fID = ++globals.fNextSinkID;
37 fNextSink = globals.fSinkHead;
38 globals.fSinkHead = this;
40 globals.fSinkMutex.release();
44 SkEventSink_Globals& globals = getGlobals(); local
46 globals.fSinkMutex.acquire();
48 SkEventSink* sink = globals.fSinkHead;
57 globals
[all...]
/external/freetype/src/type1/
H A Dt1objs.c102 PSH_Globals globals; local
107 &face->type1.private_dict, &globals );
109 t1size->internal->module_data = globals;
/external/compiler-rt/lib/asan/
H A Dasan_globals.cc12 // Handle globals.
51 // We want to remember where a certain range of globals was registered.
106 int GetGlobalsForAddress(uptr addr, Global *globals, u32 *reg_sites, argument
116 globals[res] = g;
204 // so we store the globals in a map.
224 // where two globals with the same name are defined in different modules.
288 // Apply __asan_register_globals to all globals found in the same loaded
289 // executable or shared library as `flag'. The flag tracks whether globals have
306 // Register an array of globals.
307 void __asan_register_globals(__asan_global *globals, upt argument
328 __asan_unregister_globals(__asan_global *globals, uptr n) argument
[all...]
H A Dasan_mac.cc84 // Look up the __asan_globals section in that image and register its globals
86 __asan_global *globals = (__asan_global *)getsectiondata( local
91 if (!globals) return;
93 op(globals, size / sizeof(__asan_global));
/external/freetype/src/pshinter/
H A Dpshglob.c41 psh_globals_scale_widths( PSH_Globals globals, argument
44 PSH_Dimension dim = &globals->dimension[direction];
619 psh_globals_destroy( PSH_Globals globals )
621 if ( globals )
626 memory = globals->memory;
627 globals->dimension[0].stdw.count = 0;
628 globals->dimension[1].stdw.count = 0;
630 globals->blues.normal_top.count = 0;
631 globals->blues.normal_bottom.count = 0;
632 globals
649 PSH_Globals globals = NULL; local
754 psh_globals_set_scale( PSH_Globals globals, FT_Fixed x_scale, FT_Fixed y_scale, FT_Fixed x_delta, FT_Fixed y_delta ) argument
[all...]
/external/iproute2/tc/
H A Dm_xt.c125 static int get_xtables_target_opts(struct xtables_globals *globals, argument
131 opts = xtables_options_xfrm(globals->orig_opts,
132 globals->opts,
136 opts = xtables_merge_options(globals->opts,
142 globals->opts = opts;
/external/libcxxabi/src/
H A Dcxa_exception.cpp244 __cxa_eh_globals *globals = __cxa_get_globals(); local
253 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local
298 __cxa_eh_globals* globals = __cxa_get_globals(); local
306 exception_header->nextPropagatingException = globals->propagatingExceptions;
307 globals->propagatingExceptions = exception_header;
315 if (NULL != globals->propagatingExceptions)
317 globals->propagatingExceptions = exception_header;
336 __cxa_eh_globals* globals = __cxa_get_globals(); local
337 __cxa_exception* exception_header = globals
411 __cxa_eh_globals* globals = __cxa_get_globals(); local
480 __cxa_eh_globals* globals = __cxa_get_globals_fast(); // __cxa_get_globals called in __cxa_begin_catch local
546 __cxa_eh_globals *globals = __cxa_get_globals_fast(); local
570 __cxa_eh_globals* globals = __cxa_get_globals(); local
657 __cxa_eh_globals* globals = __cxa_get_globals_fast(); local
733 __cxa_eh_globals* globals = __cxa_get_globals_fast(); local
[all...]
/external/python/cpython2/Demo/pysvr/
H A Dpysvr.c280 PyObject *mainmod, *globals; local
293 globals = PyModule_GetDict(mainmod);
294 Py_INCREF(globals);
325 end = run_command(buffer, globals);
333 Py_XDECREF(globals);
344 run_command(char *buffer, PyObject *globals) argument
350 v = PyRun_String(buffer, Py_single_input, globals, globals);
/external/python/cpython3/Python/clinic/
H A Dbltinmodule.c.h212 "eval($module, source, globals=None, locals=None, /)\n"
215 "Evaluate the given source in the context of globals and locals.\n"
219 "The globals must be a dictionary and locals can be any mapping,\n"
220 "defaulting to the current globals and locals.\n"
221 "If only globals is given, locals defaults to it.");
227 builtin_eval_impl(PyObject *module, PyObject *source, PyObject *globals,
235 PyObject *globals = Py_None; local
240 &source, &globals, &locals)) {
243 return_value = builtin_eval_impl(module, source, globals, locals);
250 "exec($module, source, globals
273 PyObject *globals = Py_None; local
[all...]
/external/skia/src/pathops/
H A DSkOpSpan.cpp365 SkOpGlobalState* globals = this->globalState(); local
366 SkOpContour* contourHead = globals->contourHead();
/external/skqp/src/pathops/
H A DSkOpSpan.cpp365 SkOpGlobalState* globals = this->globalState(); local
366 SkOpContour* contourHead = globals->contourHead();
/external/python/cpython2/Objects/
H A Dframeobject.c622 PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals, argument
631 if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
637 if (back == NULL || back->f_globals != globals) {
638 builtins = PyDict_GetItem(globals, builtin_object);
661 /* If we share the globals, we share the builtins.
716 Py_INCREF(globals);
717 f->f_globals = globals;
732 locals = globals;
H A Dfuncobject.c10 PyFunction_New(PyObject *code, PyObject *globals) argument
22 Py_INCREF(globals);
23 op->func_globals = globals;
41 /* __module__: If module name is in globals, use it.
51 module = PyDict_GetItem(globals, __name__);
345 "function(code, globals[, name[, argdefs[, closure]]])\n\
366 PyObject *globals; local
372 static char *kwlist[] = {"code", "globals", "name",
378 &PyDict_Type, &globals,
425 globals);
[all...]
/external/python/cpython2/Python/
H A D_warnings.c440 /* filename, module, and registry are new refs, globals is borrowed */
446 PyObject *globals; local
448 /* Setup globals and lineno. */
454 globals = PyThreadState_Get()->interp->sysdict;
458 globals = f->f_globals;
465 assert(globals != NULL);
466 assert(PyDict_Check(globals));
467 *registry = PyDict_GetItemString(globals, "__warningregistry__");
475 rc = PyDict_SetItemString(globals, "__warningregistry__", *registry);
483 *module = PyDict_GetItemString(globals, "__name_
[all...]
/external/python/cpython3/Objects/
H A Dframeobject.c609 PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals, argument
618 if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
624 if (back == NULL || back->f_globals != globals) {
625 builtins = _PyDict_GetItemId(globals, &PyId___builtins__);
646 /* If we share the globals, we share the builtins.
703 Py_INCREF(globals);
704 f->f_globals = globals;
719 locals = globals;
H A Dfuncobject.c9 PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname) argument
28 Py_INCREF(globals);
29 op->func_globals = globals;
51 /* __module__: If module name is in globals, use it.
53 module = PyDict_GetItem(globals, __name__);
69 PyFunction_New(PyObject *code, PyObject *globals) argument
71 return PyFunction_NewWithQualName(code, globals, NULL);
422 "function(code, globals[, name[, argdefs[, closure]]])\n\
443 PyObject *globals; local
449 static char *kwlist[] = {"code", "globals", "nam
[all...]

Completed in 2673 milliseconds

123