/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/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
ConnectorException.java | 33 package com.jme3.network.kernel;
|
KernelException.java | 33 package com.jme3.network.kernel; 37 * Represents a kernel-level error, usually encapsulating
|
Connector.java | 33 package com.jme3.network.kernel; 39 * and receiving of data. As opposed to the Kernel, this will
|
Endpoint.java | 33 package com.jme3.network.kernel; 38 * An abstract endpoint in a Kernel that can be used for 39 * sending/receiving messages within the kernel space. 48 * Kernel instance. 60 * Returns the kernel to which this endpoint belongs. 62 public Kernel getKernel();
|
Envelope.java | 33 package com.jme3.network.kernel; 36 * Encapsulates a received piece of data. This is used by the Kernel
|
Kernel.java | 33 package com.jme3.network.kernel; 40 * kernel. 45 public interface Kernel 55 * Initializes the kernel and starts any internal processing. 60 * Gracefully terminates the kernel and stops any internal 68 * kernel that match the specified endpoint filter..
|
NamedThreadFactory.java | 33 package com.jme3.network.kernel;
|
AbstractKernel.java | 33 package com.jme3.network.kernel; 42 * Base implementation of the Kernel interface providing several 44 * assumes that the kernel will be managing its own internal threads 51 public abstract class AbstractKernel implements Kernel 77 log.log( Level.SEVERE, "Unhanddled kernel error", e );
|
EndpointEvent.java | 33 package com.jme3.network.kernel; 47 private Kernel source; 51 public EndpointEvent( Kernel source, Endpoint p, Type type ) 58 public static EndpointEvent createAdd( Kernel source, Endpoint p ) 63 public static EndpointEvent createRemove( Kernel source, Endpoint p ) 68 public Kernel getSource()
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpEndpoint.java | 33 package com.jme3.network.kernel.udp; 35 import com.jme3.network.kernel.Endpoint; 36 import com.jme3.network.kernel.Kernel; 37 import com.jme3.network.kernel.KernelException; 58 private UdpKernel kernel; field in class:UdpEndpoint 61 public UdpEndpoint( UdpKernel kernel, long id, SocketAddress address, DatagramSocket socket ) 66 this.kernel = kernel; 69 public Kernel getKernel( [all...] |
/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();
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/ |
NioEndpoint.java | 33 package com.jme3.network.kernel.tcp; 35 import com.jme3.network.kernel.Endpoint; 36 import com.jme3.network.kernel.Kernel; 37 import com.jme3.network.kernel.KernelException; 58 private SelectorKernel kernel; field in class:NioEndpoint 62 public NioEndpoint( SelectorKernel kernel, long id, SocketChannel socket ) 66 this.kernel = kernel; 69 public Kernel getKernel( [all...] |
/external/oprofile/daemon/ |
opd_events.h | 26 unsigned long kernel; member in struct:opd_event
|
/external/oprofile/libop/ |
op_parse_event.h | 23 int kernel; member in struct:parsed_event 32 * event_name:count[:unit_mask:kernel:user]
|
/libcore/libdvm/src/main/java/org/apache/harmony/kernel/vm/ |
StringUtils.java | 17 package org.apache.harmony.kernel.vm;
|
/bionic/libc/kernel/tools/ |
clean_header.py | 4 import sys, cpp, kernel, glob, os, re, getopt namespace 100 -k<path> specify path of original kernel headers 101 -d<path> specify path of cleaned kernel headers
|
find_users.py | 3 # this program is used to find source code that includes linux kernel headers directly 9 import kernel namespace 19 sources that include kernel headers directly. the program prints 39 kernel.verboseSearch = 1 40 kernel.verboseFind = 1 52 # first, obtain the list of kernel files used by our clients 56 fparser = kernel.HeaderScanner()
|
update_all.py | 3 import sys, cpp, kernel, glob, os, re, getopt, clean_header namespace 9 usage: %(progname)s [kernel-original-path] 14 - a set of source kernel headers is located in '../original',
|
find_headers.py | 3 # this program is used to find source code that includes linux kernel headers directly 8 import sys, cpp, glob, os, re, getopt, kernel namespace 19 usage: find_headers.py [options] <kernel-root> (file|directory|@listfile)+ 30 this program is used to find all the kernel headers that are used 51 kernel.verboseSearch = 1 52 kernel.verboseFind = 1 82 # find all architectures in the kernel tree 101 # all those he wants are available from the kernel include tree 111 sys.stderr.write( "error: the following requested architectures are not in the kernel tree: " ) 126 #destdir = "/tmp/bionic-kernel-headers/ [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
KernelAdapter.java | 39 import com.jme3.network.kernel.Endpoint; 40 import com.jme3.network.kernel.EndpointEvent; 41 import com.jme3.network.kernel.Envelope; 42 import com.jme3.network.kernel.Kernel; 52 * Wraps a single Kernel and forwards new messages 55 * by DefaultServer to manage its kernel objects. 71 private Kernel kernel; field in class:KernelAdapter 83 public KernelAdapter( DefaultServer server, Kernel kernel, MessageListener<HostedConnection> messageDispatcher [all...] |
/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/skia/bench/ |
MatrixConvolutionBench.cpp | 19 SkScalar kernel[9] = { local 26 fFilter = new SkMatrixConvolutionImageFilter(kernelSize, kernel, gain, bias, target, tileMode, convolveAlpha);
|
/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, 40 /// Convolve with a Gaussian kernel 58 const float* kernel() const { return fKernel; } function in class:GrConvolutionEffect 71 // kernel values. 78 // on a blur filter gives a kernel width of 25 while a sigma of 5.0 79 // would exceed a 32 wide kernel. 95 const float* kernel, [all...] |
/external/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, 40 /// Convolve with a Gaussian kernel 58 const float* kernel() const { return fKernel; } function in class:GrConvolutionEffect 71 // kernel values. 78 // on a blur filter gives a kernel width of 25 while a sigma of 5.0 79 // would exceed a 32 wide kernel. 95 const float* kernel, [all...] |