Home | History | Annotate | Download | only in src

Lines Matching refs:all_shapers

32 static const hb_shaper_pair_t all_shapers[] = {
46 if (unlikely (static_shapers != all_shapers))
60 (void) hb_atomic_ptr_cmpexch (&static_shapers, NULL, &all_shapers[0]);
61 return (const hb_shaper_pair_t *) all_shapers;
65 shapers = (hb_shaper_pair_t *) malloc (sizeof (all_shapers));
67 (void) hb_atomic_ptr_cmpexch (&static_shapers, NULL, &all_shapers[0]);
68 return (const hb_shaper_pair_t *) all_shapers;
71 memcpy (shapers, all_shapers, sizeof (all_shapers));
81 for (unsigned int j = i; j < ARRAY_LENGTH (all_shapers); j++)