/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | NativeLibraryLoader.java | 119 final boolean absolute; field in NativeLibraryLoader.LoadResult 125 String name, boolean absolute, boolean usingHelperClassloader) { in newSuccessResult() argument 126 return new LoadResult(name, absolute, true, usingHelperClassloader, null); in newSuccessResult() 130 String name, boolean absolute, boolean usingHelperClassloader, Throwable error) { in newFailureResult() argument 131 return new LoadResult(name, absolute, false, usingHelperClassloader, error); in newFailureResult() 134 private LoadResult(String name, boolean absolute, boolean loaded, in LoadResult() argument 137 this.absolute = absolute; in LoadResult() 258 final boolean absolute, List<LoadResult> results) { in loadLibrary() argument 262 LoadResult result = loadLibraryFromHelperClassloader(newHelper, name, absolute); in loadLibrary() 273 LoadResult result = loadLibraryFromCurrentClassloader(name, absolute); in loadLibrary() [all …]
|
/external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/ |
D | NativeLibraryLoader.java | 120 final boolean absolute; field in NativeLibraryLoader.LoadResult 126 String name, boolean absolute, boolean usingHelperClassloader) { in newSuccessResult() argument 127 return new LoadResult(name, absolute, true, usingHelperClassloader, null); in newSuccessResult() 131 String name, boolean absolute, boolean usingHelperClassloader, Throwable error) { in newFailureResult() argument 132 return new LoadResult(name, absolute, false, usingHelperClassloader, error); in newFailureResult() 135 private LoadResult(String name, boolean absolute, boolean loaded, in LoadResult() argument 138 this.absolute = absolute; in LoadResult() 259 final boolean absolute, List<LoadResult> results) { in loadLibrary() argument 263 LoadResult result = loadLibraryFromHelperClassloader(newHelper, name, absolute); in loadLibrary() 274 LoadResult result = loadLibraryFromCurrentClassloader(name, absolute); in loadLibrary() [all …]
|
/external/webrtc/common_audio/signal_processing/ |
D | min_max_operations.c | 39 int absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW16C() local 44 absolute = abs((int)vector[i]); in WebRtcSpl_MaxAbsValueW16C() 46 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW16C() 47 maximum = absolute; in WebRtcSpl_MaxAbsValueW16C() 64 uint32_t absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW32C() local 70 absolute = abs((int)vector[i]); in WebRtcSpl_MaxAbsValueW32C() 71 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW32C() 72 maximum = absolute; in WebRtcSpl_MaxAbsValueW32C() 142 int absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsIndexW16() local 147 absolute = abs((int)vector[i]); in WebRtcSpl_MaxAbsIndexW16() [all …]
|
D | min_max_operations_neon.c | 19 int absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW16Neon() local 53 absolute = abs((int)(*p_start)); in WebRtcSpl_MaxAbsValueW16Neon() 55 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW16Neon() 56 maximum = absolute; in WebRtcSpl_MaxAbsValueW16Neon() 75 uint32_t absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW32Neon() local 111 absolute = abs((int)(*p_start)); in WebRtcSpl_MaxAbsValueW32Neon() 112 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW32Neon() 113 maximum = absolute; in WebRtcSpl_MaxAbsValueW32Neon()
|
/external/rust/crates/protobuf-codegen/src/ |
D | rust_name.rs | 68 absolute: false, in into_path() 128 absolute: bool, field 155 self.absolute in is_absolute() 159 assert!(!self.absolute); in is_empty() 168 assert!(!self.absolute); in first() 173 assert!(!self.absolute); in remove_first() 178 assert!(!self.absolute); in to_reverse() 180 absolute: false, in to_reverse() 186 assert!(!self.absolute); in prepend_ident() 191 if path.absolute { in append() [all …]
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/ |
D | rx-virtualtime.hpp | 26 typedef Absolute absolute; typedef 39 explicit virtual_time_base(absolute initialClock) in virtual_time_base() 45 mutable absolute clock_now; 49 virtual absolute add(absolute, relative) const =0; 51 virtual typename scheduler_base::clock_type::time_point to_time_point(absolute) const =0; 60 virtual void schedule_absolute(absolute, const schedulable&) const =0; 68 absolute clock() const {return clock_now;} in clock() 95 void advance_to(absolute time) const in advance_to() 188 explicit virtual_time(typename base::absolute initialClock) in virtual_time() 206 virtual void schedule_absolute(typename base::absolute when, const schedulable& a) const in schedule_absolute()
|
/external/llvm-project/llvm/test/tools/llvm-ar/ |
D | thin-archive.test | 7 Test that modules can be added with absolute paths when the archive is created using an absolute pa… 9 RUN: llvm-ar rTc %t/absolute-1.ar %t/foo/elf.o %t/delete.o %t/foo/bar/elf.o 10 RUN: llvm-ar dT %t/absolute-1.ar delete.o 12 RUN: FileCheck -input-file=%t/absolute-1.ar --check-prefixes=THIN,CHECK %s -DPATH=%/t/ 13 RUN: llvm-ar t %t/absolute-1.ar | FileCheck %s -DPATH=%/t/ 17 Test that modules can be added with absolute paths when the archive is created using a relative path 19 RUN: cd %t/foo && llvm-ar rTc bar/absolute-2.ar %t/foo/elf.o %t/delete.o %t/foo/bar/elf.o 20 RUN: cd %t/foo && llvm-ar dT bar/absolute-2.ar %t/delete.o 22 RUN: FileCheck -input-file=%t/foo/bar/absolute-2.ar --check-prefixes=THIN,CHECK %s -DPATH=%/t/ 23 RUN: llvm-ar t %t/foo/bar/absolute-2.ar | FileCheck %s -DPATH=%/t/ [all …]
|
D | absolute-paths.test | 1 MSVC's lib.exe produces archives with absolute paths to the members. It's useful 8 RUN: llvm-ar t %S/Inputs/absolute-paths.lib | FileCheck %s --check-prefix=CHECK-LIST 13 RUN: llvm-ar xP %S/Inputs/absolute-paths.lib 'C:/src/llvm-project/build/dne/a.o' 18 RUN: llvm-ar xP %S/Inputs/absolute-paths.lib C:/src/llvm-project/build/dne/b.o 23 archive with absolute paths. Extracting all objects doesn't need P because we 26 RUN: llvm-ar x %S/Inputs/absolute-paths.lib
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | thin-archive-paths.test | 23 # RUN: llvm-ar rcT c/absolute.a %t/a/b/1.o 25 # Show that absolute paths in the file header printing are correct. 26 # RUN: llvm-readobj --file-headers c/absolute.a | FileCheck %s --check-prefix=ABS -DARFILE="c/absol… 29 # Show that absolute paths in an error message for both archive and member are correct. 31 # RUN: not llvm-readobj --file-headers %/t/c/absolute.a 2>&1 | FileCheck %s --check-prefix=ERR2 -DD… 32 # RUN: not llvm-readelf --file-headers %/t/c/absolute.a 2>&1 | FileCheck %s --check-prefix=ERR2 -DD… 33 # ERR2: error: '[[DIR]]/c/absolute.a': '[[DIR]]/a/b/1.o': {{[Nn]}}o such file or directory
|
/external/fonttools/Lib/fontTools/svgLib/path/ |
D | parser.py | 130 absolute = command in UPPERCASE 145 if absolute: 179 if not absolute: 187 if not absolute: 195 if not absolute: 205 if not absolute: 234 if not absolute: 248 if not absolute: 273 if not absolute: 288 if not absolute:
|
/external/crosvm/linux_input_sys/src/ |
D | lib.rs | 105 pub fn absolute(code: u16, value: i32) -> virtio_input_event { in absolute() method 115 Self::absolute(ABS_MT_TRACKING_ID, id) in multitouch_tracking_id() 120 Self::absolute(ABS_MT_SLOT, slot) in multitouch_slot() 125 Self::absolute(ABS_MT_POSITION_X, x) in multitouch_absolute_x() 130 Self::absolute(ABS_MT_POSITION_Y, y) in multitouch_absolute_y() 135 Self::absolute(ABS_X, x) in absolute_x() 140 Self::absolute(ABS_Y, y) in absolute_y()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | 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.
|
D | int-abs-01.ll | 1 ; Test integer absolute. 5 ; Test i32->i32 absolute using slt. 16 ; Test i32->i32 absolute using sle. 27 ; Test i32->i32 absolute using sgt. 38 ; Test i32->i32 absolute using sge. 49 ; Test i32->i64 absolute. 61 ; Test i32->i64 absolute that uses an "in-register" form of sign extension. 74 ; Test i64 absolute.
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | vec-abs-06.ll | 1 ; Test f32 and v4f32 absolute on z14. 8 ; Test a plain absolute. 17 ; Test a negative absolute. 27 ; Test an f32 absolute that uses vector registers. 37 ; Test an f32 negative absolute that uses vector registers.
|
D | 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.
|
D | int-abs-01.ll | 1 ; Test integer absolute. 5 ; Test i32->i32 absolute using slt. 16 ; Test i32->i32 absolute using sle. 27 ; Test i32->i32 absolute using sgt. 38 ; Test i32->i32 absolute using sge. 49 ; Test i32->i64 absolute. 61 ; Test i32->i64 absolute that uses an "in-register" form of sign extension. 74 ; Test i64 absolute.
|
/external/llvm/test/MC/Mips/ |
D | mips-pdr-bad.s | 8 .ent foo, bar # AMS: :[[@LINE]]:23: error: expected an absolute expression after comma 16 .frame $sp, bar # ASM: :[[@LINE]]:25: error: frame size not an absolute expression 23 .mask foo # ASM: :[[@LINE]]:19: error: bitmask not an absolute expression 26 .mask 0x80000000, foo # ASM: :[[@LINE]]:31: error: frame offset not an absolute expression 30 .fmask foo # ASM: :[[@LINE]]:20: error: bitmask not an absolute expression 33 .fmask 0x80000000, foo # ASM: :[[@LINE]]:32: error: frame offset not an absolute expression
|
/external/llvm-project/llvm/test/MC/Mips/ |
D | mips-pdr-bad.s | 8 .ent foo, bar # AMS: :[[@LINE]]:23: error: expected an absolute expression after comma 16 .frame $sp, bar # ASM: :[[@LINE]]:25: error: frame size not an absolute expression 23 .mask foo # ASM: :[[@LINE]]:19: error: bitmask not an absolute expression 26 .mask 0x80000000, foo # ASM: :[[@LINE]]:31: error: frame offset not an absolute expression 30 .fmask foo # ASM: :[[@LINE]]:20: error: bitmask not an absolute expression 33 .fmask 0x80000000, foo # ASM: :[[@LINE]]:32: error: frame offset not an absolute expression
|
/external/llvm-project/llvm/test/MC/AsmParser/ |
D | assembler-expressions.s | 10 # ASM-ERR: [[@LINE+1]]:5: error: expected absolute expression 19 # ASM-ERR: [[@LINE+1]]:5: error: expected absolute expression 36 # ASM-ERR: [[@LINE+1]]:5: error: expected absolute expression 43 # ASM-ERR: [[@LINE+1]]:5: error: expected absolute expression
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/ |
D | absolute.pass.cpp | 32 ASSERT_NOT_NOEXCEPT(absolute(p)); in TEST_CASE() 33 ASSERT_NOT_NOEXCEPT(absolute(p, ec)); in TEST_CASE() 51 const path ret = absolute(TC.input, ec); in TEST_CASE()
|
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/ |
D | absolute.pass.cpp | 31 ASSERT_NOT_NOEXCEPT(absolute(p)); in TEST_CASE() 32 ASSERT_NOT_NOEXCEPT(absolute(p, ec)); in TEST_CASE() 50 const path ret = absolute(TC.input, ec); in TEST_CASE()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ComplexAbs.pbtxt | 3 summary: "Computes the complex absolute value of a tensor." 6 `float` or `double` that is the absolute value of each element in `x`. All 7 elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
|
/external/oboe/docs/reference/search/ |
D | search.css | 20 position:absolute; 30 position:absolute; 45 position:absolute; 64 position:absolute; 75 position: absolute; 100 position: absolute; 163 position: absolute;
|
/external/tinyxml2/docs/search/ |
D | search.css | 20 position:absolute; 30 position:absolute; 45 position:absolute; 64 position:absolute; 75 position: absolute; 100 position: absolute; 163 position: absolute;
|
/external/angle/third_party/vulkan_memory_allocator/docs/html/search/ |
D | search.css | 20 position:absolute; 30 position:absolute; 45 position:absolute; 64 position:absolute; 75 position: absolute; 100 position: absolute; 163 position: absolute;
|