Searched defs:absolute (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdfabs.asm0 absolute 0x5000
1 absolute 0x5000 label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfequabs.asm2 absolute 5000h label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dbin-farabs.asm3 absolute 5000h label
32 ; A couple of jumps to "normal" absolute addresses.
38 ; Non-absolute jump
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_audio_level_calculator.cc14 // Calculates the maximum absolute amplitude of the audio data.
17 int max = 0, absolute = 0; local
19 absolute = std::abs(audio_data[i]);
20 if (absolute > max)
21 max = absolute;
58 // Decay the absolute maximum amplitude by 1/4.
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp41 // If alpha, beta, gamma or absolute are null or undefined, mark them as not provided.
50 bool absolute = info[6]->BooleanValue(); local
51 DeviceOrientationData* orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationData.cpp37 DeviceOrientationData* DeviceOrientationData::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute) argument
39 return new DeviceOrientationData(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma, canProvideAbsolute, absolute);
44 return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute);
59 DeviceOrientationData::DeviceOrientationData(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute) argument
67 , m_absolute(absolute)
86 bool DeviceOrientationData::absolute() const function in class:blink::DeviceOrientationData
H A DDeviceOrientationEvent.cpp84 bool DeviceOrientationEvent::absolute(bool& isNull) const function in class:blink::DeviceOrientationEvent
87 return m_orientation->absolute();
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dinsn.h38 int absolute = insn & 2; local
41 if (absolute)
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dmin_max_operations.c35 // Maximum absolute value of word16 vector. C version for generic platforms.
37 int i = 0, absolute = 0, maximum = 0; local
44 absolute = abs((int)vector[i]);
46 if (absolute > maximum) {
47 maximum = absolute;
59 // Maximum absolute value of word32 vector. C version for generic platforms.
64 uint32_t absolute = 0, maximum = 0; local
72 absolute = abs((int)vector[i]);
73 if (absolute > maximum) {
74 maximum = absolute;
151 int i = 0, absolute = 0, maximum = 0, index = 0; local
[all...]
H A Dmin_max_operations_mips.c21 // Maximum absolute value of word16 vector.
224 // Maximum absolute value of word32 vector. Version for MIPS platform.
229 uint32_t absolute = 0, maximum = 0; local
241 "lw %[absolute], 0(%[vector]) \n\t"
242 "absq_s.w %[absolute], %[absolute] \n\t"
244 "slt %[tmp1], %[maximum], %[absolute] \n\t"
245 "movn %[maximum], %[absolute], %[tmp1] \n\t"
253 : [tmp1] "=&r" (tmp1), [maximum] "+r" (maximum), [absolute] "+r" (absolute)
[all...]
/external/chromium_org/extensions/browser/api/app_window/
H A Dapp_window_api.cc125 // Allow absolute URLs for component apps, otherwise prepend the extension
127 GURL absolute = GURL(params->url); local
128 if (absolute.has_scheme()) {
130 url = absolute;
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak131 # is-absolute
133 # Usage: bool-value = $(call is-absolute,path)
135 is-absolute = $(shell echo $(shell-sq) | grep ^/ -q && echo y)
139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
160 # Usage: absolute-executable-path-or-empty = $(call get-executable,path)
162 # The goal is to get an absolute path for an executable;
168 get-executable = $(if $(1),$(if $(is-absolute),$(_ge-abspath),$(lookup)))
173 # Usage: absolute-executable-path-or-empty = $(call get-executable-or-default,variable,default)
/external/qemu/ui/
H A Dinput.c33 void *opaque, int absolute,
91 void *opaque, int absolute,
101 s->qemu_put_mouse_event_absolute = absolute;
235 qdict_get_bool(mouse, "absolute") ? " (absolute)" : "");
270 " 'absolute': %i }",
90 qemu_add_mouse_event_handler(QEMUPutMouseEvent *func, void *opaque, int absolute, const char *name) argument
H A Dvnc.h126 int absolute; member in struct:VncState
H A Dvnc-android.c1243 static void check_pointer_type_change(VncState *vs, int absolute) argument
1245 if (vnc_has_feature(vs, VNC_FEATURE_POINTER_TYPE_CHANGE) && vs->absolute != absolute) {
1249 vnc_framebuffer_update(vs, absolute, 0,
1254 vs->absolute = absolute;
1273 if (vs->absolute) {
1543 vs->absolute = -1;
H A Dvnc.c1236 static void check_pointer_type_change(VncState *vs, int absolute) argument
1238 if (vnc_has_feature(vs, VNC_FEATURE_POINTER_TYPE_CHANGE) && vs->absolute != absolute) {
1242 vnc_framebuffer_update(vs, absolute, 0,
1247 vs->absolute = absolute;
1266 if (vs->absolute) {
1536 vs->absolute = -1;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTraceEvents.cpp279 FloatQuad absolute = renderer.localToAbsoluteQuad(FloatQuad(rect)); local
280 quad->setP1(view->contentsToRootView(roundedIntPoint(absolute.p1())));
281 quad->setP2(view->contentsToRootView(roundedIntPoint(absolute.p2())));
282 quad->setP3(view->contentsToRootView(roundedIntPoint(absolute.p3())));
283 quad->setP4(view->contentsToRootView(roundedIntPoint(absolute.p4())));
H A DInspectorTimelineAgent.cpp1286 FloatQuad absolute = renderer.localToAbsoluteQuad(FloatQuad(rect)); local
1287 quad->setP1(view->contentsToRootView(roundedIntPoint(absolute.p1())));
1288 quad->setP2(view->contentsToRootView(roundedIntPoint(absolute.p2())));
1289 quad->setP3(view->contentsToRootView(roundedIntPoint(absolute.p3())));
1290 quad->setP4(view->contentsToRootView(roundedIntPoint(absolute.p4())));
/external/pixman/test/
H A Dstress-test.c399 absolute (int32_t i) function
477 width = absolute (log_rand ()) + 1;
478 height = absolute (log_rand ()) + 1;
/external/qemu/distrib/ext4_utils/src/
H A Dmake_ext4fs.c123 full_path is an absolute or relative path, with a trailing slash, to the
126 dir_path is an absolute path, with trailing slash, to the same directory
420 is guaranteed to have a trailing slash. If absolute is true, the new string
423 static char *canonicalize_slashes(const char *str, bool absolute) argument
431 if (absolute)
437 if (str[0] != '/' && absolute) {
449 if (str[0] != '/' && absolute) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c805 unsigned absolute,
828 src_register.Absolute = absolute;
798 tgsi_build_src_register( unsigned file, unsigned swizzle_x, unsigned swizzle_y, unsigned swizzle_z, unsigned swizzle_w, unsigned negate, unsigned absolute, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_alu.c148 static struct rc_src_register absolute(struct rc_src_register reg) function
334 emit1(c, inst->Prev, RC_OPCODE_FRC, 0, dst, absolute(inst->U.I.SrcReg[0]));
335 emit2(c, inst->Prev, RC_OPCODE_ADD, 0, dst, absolute(inst->U.I.SrcReg[0]),
495 inst->U.I.SrcReg[0] = absolute(inst->U.I.SrcReg[0]);
505 negate(absolute(srcreg(RC_FILE_TEMPORARY, dst.Index))), builtin_zero, builtin_one);
572 negate(absolute(srcreg(RC_FILE_TEMPORARY, dst.Index))), builtin_one, builtin_zero);
655 * absolute value.
698 /* Note: r500 can take absolute values, but r300 cannot. */
985 absolute(swizzle_xxxx(src)),
989 absolute(swizzle_xxx
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c805 unsigned absolute,
828 src_register.Absolute = absolute;
798 tgsi_build_src_register( unsigned file, unsigned swizzle_x, unsigned swizzle_y, unsigned swizzle_z, unsigned swizzle_w, unsigned negate, unsigned absolute, unsigned indirect, unsigned dimension, int index, struct tgsi_instruction *instruction, struct tgsi_header *header ) argument
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_alu.c148 static struct rc_src_register absolute(struct rc_src_register reg) function
334 emit1(c, inst->Prev, RC_OPCODE_FRC, 0, dst, absolute(inst->U.I.SrcReg[0]));
335 emit2(c, inst->Prev, RC_OPCODE_ADD, 0, dst, absolute(inst->U.I.SrcReg[0]),
495 inst->U.I.SrcReg[0] = absolute(inst->U.I.SrcReg[0]);
505 negate(absolute(srcreg(RC_FILE_TEMPORARY, dst.Index))), builtin_zero, builtin_one);
572 negate(absolute(srcreg(RC_FILE_TEMPORARY, dst.Index))), builtin_one, builtin_zero);
655 * absolute value.
698 /* Note: r500 can take absolute values, but r300 cannot. */
985 absolute(swizzle_xxxx(src)),
989 absolute(swizzle_xxx
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java251 public boolean absolute(int row) throws SQLException { method in class:Impl_RowSet

Completed in 573 milliseconds

12