HomeSort by relevance Sort by last modified time
    Searched refs:modifier (Results 26 - 50 of 313) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_temporal_filter.c 92 int modifier; local
100 modifier = src_byte - pixel_value;
102 // float coeff = (3.0 * modifer * modifier) / pow(2, strength);
103 // modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
104 modifier *= modifier;
105 modifier *= 3;
106 modifier += 1 << (strength - 1);
107 modifier >>= strength;
109 if (modifier > 16
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
iio.hpp 38 int modifier; member in struct:mraa::IioEventData
229 int chan_type, modifier, type, direction, channel, channel2, different; local
230 mraa_iio_event_extract_event(data, &chan_type, &modifier, &type, &direction, &channel, &channel2, &different);
232 eventData.modifier = modifier;
  /ndk/sources/cxx-stl/stlport/src/
time_facets.cpp 215 char format, char modifier, variable
238 __subformat(buf, ct, (modifier != '#') ? table._M_date_time_format
243 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_mday);
244 __append(buf, _buf, ((long)t->tm_mday < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
253 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_hour);
254 __append(buf, _buf, ((long)t->tm_hour < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
258 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)__hour12(t->tm_hour));
259 __append(buf, _buf, ((long)__hour12(t->tm_hour) < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
268 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_mon + 1);
269 __append(buf, _buf, ((long)(t->tm_mon + 1) < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
signurl.py 145 duration, modifier = match.groups('h')
147 modifier = modifier.lower()
149 if modifier == 'd':
151 elif modifier == 'h':
153 elif modifier == 'm':
155 elif modifier == 's':
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 132 int modifier; local
141 modifier = src_byte - pixel_value;
143 // float coeff = (3.0 * modifer * modifier) / pow(2, strength);
144 // modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
145 modifier *= modifier;
146 modifier *= 3;
147 modifier += rounding;
148 modifier >>= strength;
150 if (modifier > 16
179 int modifier; local
    [all...]
  /external/e2fsprogs/intl/
finddomain.c 55 const char *modifier; local
67 language[_territory[.codeset]][@modifier]
83 (7) audience/modifier
137 mask = _nl_explode_name (locale, &language, &modifier, &territory,
145 codeset, normalized_codeset, modifier, special,
localcharset.c 343 const char *modifier; local
347 modifier = strchr (dot, '@');
348 if (modifier == NULL)
350 if (modifier - dot < sizeof (buf))
352 memcpy (buf, dot, modifier - dot);
353 buf [modifier - dot] = '\0';
  /toolchain/binutils/binutils-2.25/intl/
finddomain.c 58 const char *modifier; local
70 language[_territory[.codeset]][@modifier]
86 (7) audience/modifier
140 mask = _nl_explode_name (locale, &language, &modifier, &territory,
148 codeset, normalized_codeset, modifier, special,
localcharset.c 344 const char *modifier; local
348 modifier = strchr (dot, '@');
349 if (modifier == NULL)
351 if (modifier - dot < sizeof (buf))
353 memcpy (buf, dot, modifier - dot);
354 buf [modifier - dot] = '\0';
l10nflist.c 189 territory, codeset, normalized_codeset, modifier, special,
199 const char *modifier;
230 ? strlen (modifier) + 1 : 0)
276 cp = stpcpy (cp, modifier);
360 first the modifier, then the territory, then the codeset, then the
377 normalized_codeset, modifier, special,
384 normalized_codeset, modifier, special,
  /system/extras/simpleperf/
event_type.h 50 std::string modifier; member in struct:EventTypeAndModifier
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/msp430/
bad.l 2 [^:]*:6: Error: unrecognised instruction size modifier .z
6 [^:]*:10: Warning: no size modifier after period, .w assumed
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.c 519 uint32_t modifier = 0; local
543 modifier |= R300_US_OUT_FMT_C_32_FP;
546 modifier |= R300_US_OUT_FMT_C2_32_FP;
549 modifier |= R300_US_OUT_FMT_C4_32_FP;
557 modifier |= R300_US_OUT_FMT_C_16_FP;
560 modifier |= R300_US_OUT_FMT_C2_16_FP;
563 modifier |= R300_US_OUT_FMT_C4_16_FP;
575 modifier |= R300_US_OUT_FMT_C_16;
578 modifier |= R300_US_OUT_FMT_C2_16;
581 modifier |= R300_US_OUT_FMT_C4_16
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
temporal_filter_msa.c 271 int32_t modifier; local
282 modifier = src_byte - pixel_value;
283 modifier *= modifier;
284 modifier *= 3;
285 modifier += rounding;
286 modifier >>= strength;
288 if (modifier > 16)
289 modifier = 16;
291 modifier = 16 - modifier
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 35 import java.lang.reflect.Modifier;
97 int modifier = f.getModifiers(); local
98 if ((modifier & Modifier.PRIVATE) == Modifier.PRIVATE)
144 System.out.println("modifier " + modifier);
145 System.out.println("modifier.private " + Modifier.PRIVATE);
188 int modifier = f.getModifiers() local
299 int modifier = f.getModifiers(); local
    [all...]
  /external/libvncserver/webclients/novnc/include/
keyboard.js 30 // Return true if a modifier which is not the specified char modifier (and is not shift) is down
53 // Return true if the specified char modifier is currently down
65 // Helper object tracking modifier key state
76 // on Mac, Option (AKA Alt) is used as a char modifier
80 // on Windows, Ctrl+Alt is used as a char modifier
84 // on Linux, AltGr is used as a char modifier
142 // Call this with a non-keyboard event (such as mouse events) to use its modifier state to synchronize anyway
145 // is a shortcut modifier down?
147 // if a char modifier is down, return the keys it consists of, otherwise return nul
    [all...]
  /cts/tests/signature/src/android/signature/cts/
SignatureTest.java 34 import java.lang.reflect.Modifier;
232 int modifier = jdiffModifierToReflectionFormat(className, parser); local
233 return new JDiffField(fieldName, fieldType, modifier);
246 int modifier = jdiffModifierToReflectionFormat(className, parser); local
247 return new JDiffMethod(methodName, modifier, returnType);
260 int modifier = jdiffModifierToReflectionFormat(name, parser); local
261 return new JDiffConstructor(name, modifier);
287 * Convert string modifier to int modifier.
290 * @param key modifier nam
335 int modifier = 0; local
    [all...]
  /external/skia/src/gpu/glsl/
GrGLSLVarying.cpp 112 const char* modifier = v.fIsFlat ? "flat" : fDefaultInterpolationModifier; local
115 v.fPrecision, nullptr, modifier);
119 modifier);
126 v.fGsOut, v.fPrecision, nullptr, modifier);
130 v.fPrecision, nullptr, modifier);
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 89 const char* modifier = NULL; local
92 // we get a modifier
94 modifier = cur_char;
97 modifier_len = cur_char - modifier;
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 95 int modifier = f.getModifiers(); local
96 if ((modifier & Modifier.PRIVATE) == Modifier.PRIVATE)
185 int modifier = f.getModifiers(); local
186 if ((modifier & Modifier.PRIVATE) == Modifier.PRIVATE)
292 int modifier = f.getModifiers(); local
293 if ((modifier & Modifier.PRIVATE) == Modifier.PRIVATE
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader.h 135 unsigned modifier:4; member in struct:sh_dstreg
167 unsigned modifier:4; member in struct:sh_srcreg
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 68 int modifier = f.getModifiers(); local
69 if (modifier == Modifier.PRIVATE)
  /external/pdfium/public/
fpdf_formfill.h     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
keybindingDialog.py 31 for modifier in self.modifiers:
80 for modifier, variable in zip(self.modifiers, self.modifier_vars):
81 label = self.modifier_label.get(modifier, modifier)
84 text=label,variable=variable,onvalue=modifier,offvalue='')
86 self.modifier_checkbuttons[modifier] = check
90 "Select the desired modifier keys\n"+
94 "the Shift modifier. (Letters will be\n" +
119 "Upper case is used when the Shift modifier is present!\n\n" +
246 message='No modifier key(s) specified.'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
keybindingDialog.py 31 for modifier in self.modifiers:
80 for modifier, variable in zip(self.modifiers, self.modifier_vars):
81 label = self.modifier_label.get(modifier, modifier)
84 text=label,variable=variable,onvalue=modifier,offvalue='')
86 self.modifier_checkbuttons[modifier] = check
90 "Select the desired modifier keys\n"+
94 "the Shift modifier. (Letters will be\n" +
119 "Upper case is used when the Shift modifier is present!\n\n" +
246 message='No modifier key(s) specified.'
    [all...]

Completed in 605 milliseconds

12 3 4 5 6 7 8 91011>>