/hardware/ti/omap4xxx/camera/ |
CameraHalCommon.cpp | 70 unsigned long long elapsed, absolute; local 75 absolute = ppm.tv_sec; 76 absolute *= 1000; 77 absolute += ppm.tv_usec /1000; 79 ALOGD("PPM: %s :%llu.%llu ms : %llu ms", str, ( elapsed /1000 ), ( elapsed % 1000 ), absolute); 99 unsigned long long absolute; local 105 absolute = ppm.tv_sec; 106 absolute *= 1000; 107 absolute += ppm.tv_usec /1000; 112 ALOGD("PPM: %s :%ld.%ld ms : %llu ms", temp_str, ( ppm.tv_sec /1000 ), ( ppm.tv_sec % 1000 ), absolute); [all...] |
/external/llvm/test/CodeGen/SystemZ/ |
vec-abs-05.ll | 1 ; Test f64 and v2f64 absolute. 8 ; Test a plain absolute. 17 ; Test a negative absolute. 27 ; Test an f64 absolute that uses vector registers. 37 ; Test an f64 negative absolute that uses vector registers.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-crx/ |
crx.ld | 30 Absolute address (R_CRX_REGREL12) : 0x0101 + 0x700 + 4 = 0x805 40 Absolute address (R_CRX_IMM16) : 0x01010 + 0x1000 + 4 = 0x2014 49 Absolute address (R_CRX_REGREL22) : 0x0201400 + 0x100000 + 6 = 0x301406 67 Absolute address (R_CRX_REGREL28) : 0x06201400 + 0x3100000 + 6 = 0x9301406 76 Absolute address (R_CRX_ABS32, R_CRX_IMM32) : 0x11014000 + 0x11000000 + 6 = 0x22014006
|
reloc-abs32.d | 5 # Test absolute relocation R_CRX_ABS32
|
/external/webrtc/webrtc/common_audio/signal_processing/ |
min_max_operations.c | 36 // Maximum absolute value of word16 vector. C version for generic platforms. 39 int 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 70 absolute = abs((int)vector[i]); 71 if (absolute > maximum) { 72 maximum = absolute; 142 int absolute = 0, maximum = 0; local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
SimpleScalarValueChecker.java | 29 * threshold or if either the absolute difference between the objective 40 /** Default absolute threshold. */ 46 /** Absolute tolerance threshold. */ 58 * In order to perform only relative checks, the absolute tolerance 59 * must be set to a negative value. In order to perform only absolute 63 * @param absoluteThreshold absolute tolerance threshold
|
/external/robolectric/v1/ |
build.xml | 63 <property name="main.absolute.dir" location="${main.dir}"/> 64 <property name="out.main.dir" value="${out.absolute.dir}/mainClasses"/> 65 <property name="out.main.absolute.dir" value="${out.main.dir}"/> 67 <property name="main.external.libs.absolute.dir" location="${main.external.libs.dir}"/> 69 <property name="test.absolute.dir" location="${test.dir}"/> 70 <property name="out.test.dir" value="${out.absolute.dir}/testClasses"/> 71 <property name="out.test.absolute.dir" value="${out.test.dir}"/> 73 <property name="test.external.libs.absolute.dir" location="${test.external.libs.dir}"/> 75 <property name="publish.dir" location="${out.absolute.dir}/publish"/> 91 <mkdir dir="${out.main.absolute.dir}"/ [all...] |
/device/google/contexthub/firmware/misc/cpu/cortexm4f/ |
app.lkr | 83 __data_start = ABSOLUTE(.); 87 __data_end = ABSOLUTE(.); 90 __got_start = ABSOLUTE(.); 92 __got_end = ABSOLUTE(.); 99 __rel_start = ABSOLUTE(.); 101 __rel_end = ABSOLUTE(.); 112 __bss_start = ABSOLUTE(.); 115 __bss_end = ABSOLUTE(.);
|
/device/google/contexthub/firmware/misc/platform/linux/ |
linux.extra.lkr | 21 __app_start = ABSOLUTE(.); 23 __app_end = ABSOLUTE(.);
|
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/ |
track.css | 25 position: absolute; 31 position: absolute;
|
/ndk/tests/build/absolute-src-file-paths/jni/ |
Android.mk | 12 ifeq (,$(call host-path-is-absolute,$(FOO_PATH))) 13 $(info FOO_PATH should be defined to an absolute path!)
|
/external/clang/test/Sema/ |
warn-absolute-value-header.c | 16 // expected-warning@-1{{taking the absolute value of unsigned type 'unsigned int' has no effect}} 24 // expected-warning@-1{{absolute value function 'abs' given an argument of type 'long long' but has parameter of type 'int' which may cause truncation of value}} 28 // expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}} 32 // expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}}
|
/external/llvm/test/MC/MachO/ |
bad-darwin-x86_64-32-bit-abs-addr.s | 5 // CHECK-ERROR: 32-bit absolute addressing is not supported in 64-bit mode
|
/external/llvm/test/MC/PowerPC/ |
ppc64-localentry-error2.s | 11 # CHECK: LLVM ERROR: .localentry expression must be absolute.
|
/external/llvm/test/tools/llvm-objdump/ |
macho-exports-trie.test | 9 # CHECK:0x12345678 _myAbs [absolute]
|
/external/toybox/toys/other/ |
realpath.c | 13 Display the canonical absolute pathname
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
GroveRotarySample.java | 41 float abs_value = knob.abs_value(); // Absolute raw value 42 float abs_deg = knob.abs_deg(); // Absolute degrees 43 float abs_rad = knob.abs_rad(); // Absolute radians 48 System.out.println("Absolute: " + abs_value + " raw, " + abs_deg + " deg, " + abs_rad
|
/prebuilts/go/darwin-x86/src/math/cmplx/ |
abs.go | 11 // Abs returns the absolute value (also called the modulus) of x.
|
polar.go | 7 // Polar returns the absolute value r and phase ? of x,
|
/prebuilts/go/linux-x86/src/math/cmplx/ |
abs.go | 11 // Abs returns the absolute value (also called the modulus) of x.
|
polar.go | 7 // Polar returns the absolute value r and phase ? of x,
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
noov.s | 5 ; ...as well as absolute symbol (defined outside sections in the
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
gp-hidden-lib-64.rd | 7 # This must be an absolute relocation, there must not be a _gp reference.
|
gp-hidden-ver.rd | 5 # This must be an absolute relocation, there must not be a _gp reference.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-nios2/ |
relax_cjmp.s | 1 # relaxing conditional jumps -- absolute
|