Searched refs:modifier (Results 26 - 50 of 179) sorted by relevance

12345678

/external/mesa3d/src/mesa/main/
H A Dtexcompress_etc_tmp.h64 TAG(etc1_clamp)(UINT8_TYPE base, int modifier) argument
66 int tmp = (int) base + modifier;
105 /* pick modifier tables */
120 int modifier, bit, idx, blk; local
131 modifier = block->modifier_tables[blk][idx];
133 dst[0] = TAG(etc1_clamp)(base_color[0], modifier);
134 dst[1] = TAG(etc1_clamp)(base_color[1], modifier);
135 dst[2] = TAG(etc1_clamp)(base_color[2], modifier);
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_win.cc25 int modifier = 0; local
29 modifier = WebInputEvent::IsKeyPad;
42 modifier = WebInputEvent::IsKeyPad;
61 modifier = WebInputEvent::IsKeyPad;
65 modifier = WebInputEvent::IsLeft;
67 modifier = WebInputEvent::IsRight;
71 modifier = WebInputEvent::IsLeft;
73 modifier = WebInputEvent::IsRight;
77 modifier = WebInputEvent::IsLeft;
79 modifier
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Dtemporal_filter_apply_sse2.asm99 ; modifier = src_byte - pixel_value
103 ; modifier *= modifier
107 ; modifier *= 3
115 ; modifier >>= strength
119 ; modifier = 16 - modifier
120 ; saturation takes care of modifier > 16
126 ; modifier *= filter_weight
133 ; += modifier
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_temporal_filter_apply_sse2.asm104 ; modifier = src_byte - pixel_value
108 ; modifier *= modifier
112 ; modifier *= 3
120 ; modifier >>= strength
124 ; modifier = 16 - modifier
125 ; saturation takes care of modifier > 16
131 ; modifier *= filter_weight
138 ; += modifier
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dtemporal_filter_apply_sse2.asm99 ; modifier = src_byte - pixel_value
103 ; modifier *= modifier
107 ; modifier *= 3
115 ; modifier >>= strength
119 ; modifier = 16 - modifier
120 ; saturation takes care of modifier > 16
126 ; modifier *= filter_weight
133 ; += modifier
[all...]
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_temporal_filter_apply_sse2.asm99 ; modifier = src_byte - pixel_value
103 ; modifier *= modifier
107 ; modifier *= 3
115 ; modifier >>= strength
119 ; modifier = 16 - modifier
120 ; saturation takes care of modifier > 16
126 ; modifier *= filter_weight
133 ; += modifier
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_collection.h100 // Click behavior may be modified as indicated by |modifier|.
102 panel::ClickModifier modifier) = 0;
118 // The behavior might be modified as indicated by |modifier|.
120 panel::ClickModifier modifier) = 0;
122 panel::ClickModifier modifier) = 0;
H A Ddetached_panel_collection.h42 panel::ClickModifier modifier) OVERRIDE;
47 panel::ClickModifier modifier) OVERRIDE;
49 panel::ClickModifier modifier) OVERRIDE;
/external/chromium_org/chrome/common/
H A Dchrome_version_info.cc112 std::string modifier = GetVersionStringModifier(); local
113 if (!modifier.empty())
114 current_version += " " + modifier;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dnuances.rb135 : (modifier+ INT)=> modifier+ expression
136 | modifier+ statement
148 modifier
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dkey_util.js52 * pressed one after the other while modifier keys (Cros+Shift) are held down.
82 // modifier key combination is active.
179 * Returns the keycode of a string representation of the specified modifier.
411 var modifier = '';
417 modifier = 'Ctrl';
421 modifier = searchKey;
424 modifier = 'Alt';
427 modifier = 'AltGraph';
430 modifier = 'Shift';
434 modifier
[all...]
H A Dkey_sequence.js25 * - Whether or not the ChromeVox modifier key is required with the command.
30 * - Whether or not the ChromeVox modifier key was active when the keys were
37 * @param {boolean=} opt_cvoxModifier Whether or not the ChromeVox modifier key
38 * is active. If not specified, we will try to determine whether the modifier
66 // try to use the CVox modifier or prefix key.
74 * NOTE: If a modifier key is pressed by itself, we will store the keyCode
143 * involved and on whether or not they both require a ChromeVox modifier key.
148 * ChromeVox modifier active then we have a match.
149 * - Next we try and match with the ChromeVox modifier. If both commands have
150 * the same key code, and one of them has the ChromeVox modifier an
[all...]
/external/chromium_org/tools/usb_gadget/
H A Dkeyboard_gadget.py73 def ModifierDown(self, modifier):
74 self._modifiers |= modifier
78 def ModifierUp(self, modifier):
79 self._modifiers &= ~modifier
151 def ModifierDown(self, modifier):
152 self._feature.ModifierDown(modifier)
154 def ModifierUp(self, modifier):
155 self._feature.ModifierUp(modifier)
/external/javassist/src/main/javassist/bytecode/
H A DAccessFlag.java117 * @param modifier javassist.Modifier
119 public static int of(int modifier) { argument
120 return modifier;
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp20 SystemZCP::SystemZCPModifier modifier)
21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {}
36 llvm_unreachable("Unknown modifier");
19 SystemZConstantPoolValue(const GlobalValue *gv, SystemZCP::SystemZCPModifier modifier) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtemporal_filter.c99 int modifier; local
111 modifier = src_byte - pixel_value;
113 * float coeff = (3.0 * modifer * modifier) / pow(2, strength);
114 * modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
116 modifier *= modifier;
117 modifier *= 3;
118 modifier += rounding;
119 modifier >>= strength;
121 if (modifier > 1
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dtemporal_filter.c99 int modifier; local
110 modifier = src_byte - pixel_value;
112 * float coeff = (3.0 * modifer * modifier) / pow(2, strength);
113 * modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
115 modifier *= modifier;
116 modifier *= 3;
117 modifier += 1 << (strength - 1);
118 modifier >>= strength;
120 if (modifier > 1
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_temporal_filter.c92 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 > 1
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_util.cc83 int modifier = 0; local
85 modifier |= GDK_SHIFT_MASK;
87 modifier |= GDK_CONTROL_MASK;
89 modifier |= GDK_MOD1_MASK;
90 return static_cast<GdkModifierType>(modifier);
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstOperationsTest.java105 BstModifier<Character, SimpleNode> modifier = EasyMock.createStrictMock(BstModifier.class);
108 expect(modifier.modify(eq('c'), (SimpleNode) isNull())).andReturn(
127 replay(nodeFactory, balancePolicy, modifier);
129 BstMutationRule.createRule(modifier, balancePolicy, nodeFactory);
141 verify(nodeFactory, balancePolicy, modifier);
161 BstModifier<Character, SimpleNode> modifier = EasyMock.createStrictMock(BstModifier.class);
164 expect(modifier.modify(eq('a'), withKey('a'))).andReturn(
166 replay(nodeFactory, balancePolicy, modifier);
168 BstMutationRule.createRule(modifier, balancePolicy, nodeFactory);
177 verify(nodeFactory, balancePolicy, modifier);
[all...]
/external/stlport/src/
H A Dtime_facets.cpp215 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
454 __write_formatted_time(__iostring &buf, const ctype<char>& ct, char format, char modifier, const _Time_Info& table, const tm* t) argument
459 __write_formatted_time(__iowstring &buf, const ctype<wchar_t>& ct, char format, char modifier, const _WTime_Info& table, const tm* t) argument
[all...]
/external/e2fsprogs/intl/
H A Dfinddomain.c55 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,
/external/pdfium/fpdfsdk/src/
H A Dfpdfformfill.cpp78 DLLEXPORT FPDF_BOOL STDCALL FORM_OnMouseMove(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
96 return pPageView->OnMouseMove(pt, modifier);
99 DLLEXPORT FPDF_BOOL STDCALL FORM_OnLButtonDown(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
113 return pPageView->OnLButtonDown(pt, modifier);
116 DLLEXPORT FPDF_BOOL STDCALL FORM_OnLButtonUp(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
130 return pPageView->OnLButtonUp(pt, modifier);
133 DLLEXPORT FPDF_BOOL STDCALL FORM_OnKeyDown(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int nKeyCode, int modifier) argument
145 return pPageView->OnKeyDown(nKeyCode, modifier);
148 DLLEXPORT FPDF_BOOL STDCALL FORM_OnKeyUp(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int nKeyCode, int modifier) argument
160 return pPageView->OnKeyUp(nKeyCode, modifier);
164 FORM_OnChar(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int nChar, int modifier) argument
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Dflakiness_dashboard_results_uploader.py47 return self._test_results_map[test_name].modifier
129 for results_list, failed, modifier in conversion_map:
135 # The WebKit TestResult object sets the modifier it based on test name.
137 # modifier will be wrong, so we need to overwrite it.
138 test_result.modifier = modifier
/external/pdfium/fpdfsdk/include/javascript/
H A Devent.h22 FX_BOOL modifier(OBJ_PROP_PARAMS);
53 JS_STATIC_PROP(modifier, event);

Completed in 3326 milliseconds

12345678