OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_mag
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h
54
// @param
max_mag
The maximum magnitude of the vector.
55
void Clamp(double
max_mag
) {
57
if (mag >
max_mag
) {
58
Scale(
max_mag
/ mag); // Does Normalize() followed by Scale(
max_mag
).
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp
160
Int f_code_p, f_code_n,
max_mag
= 0, min_mag = 0;
local
417
if (mot_mb[0].x >
max_mag
)
418
max_mag
= mot_mb[0].x;
419
if (mot_mb[0].y >
max_mag
)
420
max_mag
= mot_mb[0].y;
436
if (mot_mb[comp].x >
max_mag
)
437
max_mag
= mot_mb[comp].x;
438
if (mot_mb[comp].y >
max_mag
)
439
max_mag
= mot_mb[comp].y;
509
while ((
max_mag
>> (4 + f_code_p)) > 0
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decimal.py
172
'maxmag':'
max_mag
',
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_decimal.py
172
'maxmag':'
max_mag
',
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py
3334
def
max_mag
(self, other, context=None):
member in class:Decimal
4689
def
max_mag
(self, a, b):
member in class:Context
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py
3334
def
max_mag
(self, other, context=None):
member in class:Decimal
4689
def
max_mag
(self, a, b):
member in class:Context
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest
157
-- max/min/
max_mag
/min_mag bug in 2.5.2/2.6/3.0: max(NaN, finite) gave
169
extr1420
max_mag
0.1111111 -NaN123 -> 0.111111 Inexact Rounded
170
extr1421
max_mag
NaN999999999 0.001234567 -> 0.00123457 Inexact Rounded
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest
157
-- max/min/
max_mag
/min_mag bug in 2.5.2/2.6/3.0: max(NaN, finite) gave
169
extr1420
max_mag
0.1111111 -NaN123 -> 0.111111 Inexact Rounded
170
extr1421
max_mag
NaN999999999 0.001234567 -> 0.00123457 Inexact Rounded
[
all
...]
Completed in 376 milliseconds