HomeSort by relevance Sort by last modified time
    Searched defs:kernel (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/libhevc/common/arm/
ihevc_intra_pred_chroma_mode_18_34.s 131 kernel: label
152 bne kernel
159 beq kernel
  /external/libhevc/common/arm64/
ihevc_intra_pred_chroma_mode_18_34.s 133 kernel: label
154 bne kernel
161 beq kernel
  /external/chromium_org/sync/syncable/
entry_kernel_unittest.cc 16 EntryKernel kernel; local
17 scoped_ptr<base::DictionaryValue> value(kernel.ToValue(NULL));
entry.cc 55 entry_info->Set("kernel", kernel_->ToValue(cryptographer));
137 EntryKernel* const kernel = entry.kernel_; local
140 << kernel->ref(static_cast<Int64Field>(i)) << ", ";
144 << GetTimeDebugString(kernel->ref(static_cast<TimeField>(i))) << ", ";
148 << kernel->ref(static_cast<IdField>(i)) << ", ";
152 if (kernel->ref(static_cast<BitField>(i)))
156 const std::string& field = kernel->ref(static_cast<StringField>(i));
161 kernel->ref(static_cast<ProtoField>(i)).SerializeAsString(),
167 << kernel->ref(static_cast<UniquePositionField>(i)).ToDebugString()
172 kernel->ref(static_cast<AttachmentMetadataField>(i)
    [all...]
syncable_write_transaction.cc 51 EntryKernel* kernel = directory()->GetEntryByHandle(it->first); local
52 if (!kernel) {
56 if (kernel->is_dirty()) {
57 it->second.mutated = *kernel;
  /bionic/libc/private/
kernel_sigset_t.h 20 // Our sigset_t is wrong for ARM and x86. It's 32-bit but the kernel expects 64 bits.
23 // to the kernel, at the cost of not being able to refer to real-time signals.
48 uint32_t kernel[2]; member in union:kernel_sigset_t
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
WaveShaperProcessor.cpp 69 WaveShaperDSPKernel* kernel = static_cast<WaveShaperDSPKernel*>(m_kernels[i].get()); local
70 kernel->lazyInitializeOversampling();
WaveShaperDSPKernel.cpp 179 WaveShaperDSPKernel* kernel = const_cast<WaveShaperDSPKernel*>(this); local
181 switch (kernel->waveShaperProcessor()->oversample()) {
  /external/oprofile/daemon/
opd_events.h 26 unsigned long kernel; member in struct:opd_event
opd_sfile.h 50 /** kernel image if applicable */
51 struct kernel_image * kernel; member in struct:sfile
79 /** clear any sfiles that are for the kernel */
105 * that the PC value be set appropriately (needed for kernel images)
  /external/oprofile/libop/
op_parse_event.h 23 int kernel; member in struct:parsed_event
32 * event_name:count[:unit_mask:kernel:user]
  /bionic/libc/kernel/tools/
clean_header.py 7 # kernel headers.
35 # Note that this also removes any reference to a kernel-specific
44 # kernel anyway (and which normally *should* be guarded by an #ifdef
45 # __KERNEL__ ... #endif block, if the kernel writers were not so messy).
58 # perform a call to one of these kernel-header functions, or even define other
77 import sys, cpp, kernel, glob, os, re, getopt namespace
128 # kernel header tree for architectural-dependent uapi headers
184 -k<path> specify path of original kernel headers
185 -d<path> specify path of cleaned kernel headers
update_all.py 3 import sys, cpp, kernel, glob, os, re, getopt, clean_header, subprocess namespace
9 usage: %(progname)s [kernel-original-path]
14 - a set of source kernel headers is located in '../original',
  /external/chromium_org/extensions/browser/api/system_cpu/
cpu_info_provider_win.cc 61 double kernel = static_cast<double>(processor_info[i].KernelTime.QuadPart), local
66 // real kernel time.
67 infos->at(i)->usage.kernel = kernel - idle;
70 infos->at(i)->usage.total = kernel + user;
  /external/chromium_org/third_party/skia/bench/
MatrixConvolutionBench.cpp 19 SkScalar kernel[9] = { local
26 fFilter = SkMatrixConvolutionImageFilter::Create(kernelSize, kernel, gain, bias, kernelOffset, tileMode, convolveAlpha);
  /external/oprofile/daemon/liblegacy/
opd_image.h 24 * A binary (library, application, kernel or module)
39 /** thread id, on 2.2 kernel always == to tgid */
45 /** kernel image or not */
46 int kernel; member in struct:opd_image
76 * opd_get_kernel_image - get a kernel image
78 * @param app_name application owner of this kernel image. non-null only
94 * @param kernel is the image a kernel/module image
104 int kernel, pid_t tid, pid_t tgid);
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConvolutionEffect.h 16 * A convolution effect. The kernel is specified as an array of 2 * half-width
24 /// Convolve with an arbitrary user-specified kernel
28 const float* kernel,
34 kernel,
39 /// Convolve with a Gaussian kernel
56 const float* kernel() const { return fKernel; } function in class:GrConvolutionEffect
69 // kernel values.
76 // on a blur filter gives a kernel width of 25 while a sigma of 5.0
77 // would exceed a 32 wide kernel.
93 const float* kernel,
    [all...]
GrMatrixConvolutionEffect.h 15 // Allows for a 5x5 kernel (or 25x1, for that matter).
25 const SkScalar* kernel,
34 kernel,
65 const float* kernel() const { return fKernel; } function in class:GrMatrixConvolutionEffect
79 const SkScalar* kernel,
  /external/chromium_org/base/synchronization/
waitable_event_watcher_posix.cc 151 WaitableEvent::WaitableEventKernel* kernel = event->kernel_.get(); local
153 AutoLock locked(kernel->lock_);
157 if (kernel->signaled_) {
158 if (!kernel->manual_reset_)
159 kernel->signaled_ = false;
170 kernel_ = kernel;
196 // We have no kernel. This means that we never enqueued a Waiter on an
210 // We have a lock on the kernel. No one else can signal the event while we
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 156 // Link the kernel with libclc
171 // list of kernel functions to the internalizer. The internalizer will
178 llvm::Function *kernel = *I; local
179 export_list.push_back(kernel->getName().data());
206 // XXX: Support more than one kernel
  /external/chromium_org/third_party/skia/gm/
matrixconvolution.cpp 56 SkScalar kernel[9] = { local
66 kernel,
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 156 // Link the kernel with libclc
171 // list of kernel functions to the internalizer. The internalizer will
178 llvm::Function *kernel = *I; local
179 export_list.push_back(kernel->getName().data());
206 // XXX: Support more than one kernel
  /development/ndk/platforms/android-L/include/sys/
ucontext.h 74 uint32_t kernel[2]; member in union:ucontext::__anon2539
76 // The kernel adds extra padding after uc_sigmask to match glibc sigset_t on ARM.
91 // The kernel adds extra padding after uc_sigmask to match glibc sigset_t on ARM64.
158 uint32_t kernel[2];
  /external/chromium_org/third_party/libsrtp/srtp/
Makefile 93 err = crypto/kernel/err.o
95 kernel = crypto/kernel/crypto_kernel.o crypto/kernel/alloc.o \ macro
96 crypto/kernel/key.o $(rng) $(err) # $(ust)
98 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
  /external/chromium_org/third_party/libsrtp/srtp/crypto/
Makefile 87 err = kernel/err.o
89 kernel = kernel/crypto_kernel.o kernel/alloc.o \ macro
90 kernel/key.o $(rng) $(err)
94 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)

Completed in 934 milliseconds

1 2 3