Searched defs:um (Results 1 - 20 of 20) sorted by relevance

/external/dropbear/libtommath/
H A Dbn_mp_reduce.c25 int res, um = m->used; local
33 mp_rshd (&q, um - 1);
36 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
42 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
46 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
58 mp_rshd (&q, um + 1);
61 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
66 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
78 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY)
/external/oprofile/daemon/
H A Dopd_events.h25 unsigned long um; member in struct:opd_event
/external/chromium_org/third_party/skia/src/core/
H A DSkGlyphCache_Globals.h33 SkGlyphCache_Globals(UseMutex um) { argument
40 fMutex = (kYes_UseMutex == um) ? SkNEW(SkMutex) : NULL;
/external/oprofile/libop/
H A Dop_events.h44 } um[MAX_UNIT_MASK]; member in struct:op_unit_mask
45 struct list_head um_next; /**< next um in list */
68 struct op_event * op_find_event(op_cpu cpu_type, u32 nr, u32 um);
72 struct op_event * find_event_by_name(char const * name, unsigned um,
94 * @param um unit mask for counter
103 int op_check_events(int ctr, u32 event, u32 um, op_cpu cpu_type);
113 unsigned long um; member in struct:op_default_event_descr
H A Dop_events.c34 static void free_unit_mask(struct op_unit_mask * um);
110 static void parse_um(struct op_unit_mask * um, char const * line) argument
136 free_unit_mask(um);
145 um->name = op_xstrndup(tagend, valueend - tagend);
151 um->unit_type_mask = utm_mandatory;
153 um->unit_type_mask = utm_bitmask;
155 um->unit_type_mask = utm_exclusive;
163 um->default_mask = parse_hex(tagend);
173 if (!um->name)
203 struct op_unit_mask * um local
210 free_unit_mask(struct op_unit_mask * um) argument
222 struct op_unit_mask * um = NULL; local
289 struct op_unit_mask * um = list_entry(pos, struct op_unit_mask, um_next); local
300 struct op_unit_mask * um = try_find_um(value); local
312 struct op_unit_mask *new, *um; local
537 check_unit_mask(struct op_unit_mask const * um, char const * cpu_name) argument
620 struct op_unit_mask * um = list_entry(pos, struct op_unit_mask, um_next); local
691 find_event_um(u32 nr, u32 um) argument
847 match_event(int i, struct op_event *event, unsigned um) argument
863 find_event_by_name(char const * name, unsigned um, int um_valid) argument
886 op_find_event(op_cpu cpu_type, u32 nr, u32 um) argument
904 op_check_events(int ctr, u32 nr, u32 um, op_cpu cpu_type) argument
[all...]
/external/oprofile/libpp/
H A Dop_header.cpp169 string const op_print_event(op_cpu cpu_type, u32 type, u32 um, u32 count) argument
178 struct op_event * event = op_find_event(cpu_type, type, um);
192 if (event->unit->um[i].value == um)
193 um_desc = event->unit->um[i].desc;
203 ss << hex << setw(2) << setfill('0') << unsigned(um);
215 string const op_xml_print_event(op_cpu cpu_type, u32 type, u32 um, u32 count) argument
222 struct op_event * event = op_find_event(cpu_type, type, um);
233 str_out << um; local
/external/skia/gm/
H A Dshadertext3.cpp30 SkUnitMapper* um = NULL; local
32 um = new SkCosineMapper;
34 SkAutoUnref au(um);
37 SK_ARRAY_COUNT(kColors0), SkShader::kClamp_TileMode, um))->unref();
H A Dshadertext.cpp27 SkUnitMapper* um = NULL; local
29 um = new SkCosineMapper;
31 SkAutoUnref au(um);
35 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
H A Dshadertext2.cpp30 SkUnitMapper* um = NULL; local
32 um = new SkCosineMapper;
34 SkAutoUnref au(um);
37 SK_ARRAY_COUNT(kColors0), SkShader::kClamp_TileMode, um))->unref();
H A Dtilemodes.cpp33 SkUnitMapper* um = NULL; local
35 um = new SkCosineMapper;
36 // um = new SkDiscreteMapper(12);
38 SkAutoUnref au(um);
42 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
H A Dtilemodes_scaled.cpp33 SkUnitMapper* um = NULL; local
35 um = new SkCosineMapper;
36 // um = new SkDiscreteMapper(12);
38 SkAutoUnref au(um);
42 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
/external/skia/src/core/
H A DSkGlyphCache_Globals.h33 SkGlyphCache_Globals(UseMutex um) { argument
40 fMutex = (kYes_UseMutex == um) ? SkNEW(SkMutex) : NULL;
/external/oprofile/module/ia64/
H A Dop_pmu.c152 pmc_fill_in(ulong * val, u8 kernel, u8 user, u8 event, u8 um) argument
179 *val |= ((um & 0xf) << 16);
/external/oprofile/gui/
H A Doprof_start.cpp290 event_cfgs[descr.name].umask = descr.um;
714 mask |= descr.unit->um[num].value;
716 mask = descr.unit->um[num].value;
777 op_unit_mask const * um = descr.unit; local
781 if (!um || um->unit_type_mask == utm_mandatory)
786 unit_mask_group->setExclusive(um->unit_type_mask == utm_exclusive);
788 for (size_t i = 0; i < um->num ; ++i) {
808 check->setText(um->um[
[all...]
/external/oprofile/opcontrol/
H A Dopcontrol.cpp42 int um; member in struct:event_info
734 event_info[event_idx].um);
738 setup_result |= echo_dev(NULL, event_info[event_idx].um, "unit_mask", i);
/external/dropbear/libtommath/mtest/
H A Dmpi.c3372 mp_size um = USED(m); local
3377 s_mp_rshd(&q, um - 1); /* q1 = x / b^(k-1) */
3379 s_mp_rshd(&q, um + 1); /* q3 = q2 / b^(k+1) */
3382 s_mp_mod_2d(x, (mp_digit)(DIGIT_BIT * (um + 1)));
3387 s_mp_mod_2d(&q, (mp_digit)(DIGIT_BIT * (um + 1)));
3389 s_mp_mul_dig(&q, m, um + 1);
3399 if((res = s_mp_lshd(&q, um + 1)) != MP_OKAY)
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c2262 int res, um = m->used; local
2270 mp_rshd (&q, um - 1);
2273 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
2279 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2283 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2296 mp_rshd (&q, um + 1);
2299 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
2304 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
2316 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY) {
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c2262 int res, um = m->used; local
2270 mp_rshd (&q, um - 1);
2273 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
2279 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2283 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2296 mp_rshd (&q, um + 1);
2299 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
2304 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
2316 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY) {
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c2262 int res, um = m->used; local
2270 mp_rshd (&q, um - 1);
2273 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
2279 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2283 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
2296 mp_rshd (&q, um + 1);
2299 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
2304 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
2316 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY) {
/external/dropbear/libtommath/pre_gen/
H A Dmpi.c6581 int res, um = m->used; local
6589 mp_rshd (&q, um - 1);
6592 if (((unsigned long) um) > (((mp_digit)1) << (DIGIT_BIT - 1))) {
6598 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
6602 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
6614 mp_rshd (&q, um + 1);
6617 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
6622 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
6634 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY)

Completed in 353 milliseconds