/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
type.hpp | 11 // Just a simple "type envelope". Useful in various contexts, mostly to work
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
AbstractKernel.java | 67 private LinkedBlockingQueue<Envelope> envelopes = new LinkedBlockingQueue<Envelope>(); 94 * Removes one envelope from the received messages queue or 97 public Envelope read() throws InterruptedException 116 protected void addEnvelope( Envelope env ) 119 throw new KernelException( "Critical error, could not enqueue envelope." );
|
Envelope.java | 42 public class Envelope 49 * Creates an incoming envelope holding the data from the specified 53 public Envelope( Endpoint source, byte[] data, boolean reliable ) 77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
|
Kernel.java | 48 * A marker envelope returned from read() that indicates that 52 public static final Envelope EVENTS_PENDING = new Envelope( null, new byte[0], false ); 84 * Removes one envelope from the received messages queue or 87 public Envelope read() throws InterruptedException;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
UsimDataDownloadHandler.java | 53 /** Response to SMS-PP download envelope command. */ 128 byte[] envelope = new byte[totalLength]; 132 envelope[index++] = (byte) BER_SMS_PP_DOWNLOAD_TAG; 134 envelope[index++] = (byte) 0x81; // length 128-255 encoded as 0x81 + length 136 envelope[index++] = (byte) bodyLength; 139 envelope[index++] = (byte) (0x80 | ComprehensionTlvTag.DEVICE_IDENTITIES.value()); 140 envelope[index++] = (byte) 2; 141 envelope[index++] = (byte) DEV_ID_NETWORK; 142 envelope[index++] = (byte) DEV_ID_UICC; 146 envelope[index++] = (byte) ComprehensionTlvTag.ADDRESS.value() [all...] |
/external/libvorbis/lib/ |
envelope.h | 13 function: PCM data envelope analysis and manipulation 14 last mod: $Id: envelope.h 16227 2009-07-08 06:58:46Z xiphmont $
|
Makefile.am | 9 libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c \ 14 envelope.h lpc.h lsp.h codebook.h misc.h psy.h\
|
codec_internal.h | 21 #include "envelope.h" 63 envelope_lookup *ve; /* envelope lookup */
|
/external/chromium_org/sync/notifier/ |
sync_system_resources.cc | 228 ipc::invalidation::ClientGatewayMessage envelope; local 229 envelope.set_is_client_to_server(true); 231 envelope.set_service_context(service_context); 232 envelope.set_rpc_scheduling_hash(scheduling_hash); 234 envelope.set_network_message(message); 235 envelope.SerializeToString(encoded_message); 244 ipc::invalidation::ClientGatewayMessage envelope; local 245 if (!envelope.ParseFromString(data)) { 248 *message = envelope.network_message(); 249 if (envelope.has_service_context()) [all...] |
/external/aac/libSBRdec/src/ |
env_extr.h | 86 \brief Envelope extraction prototypes 100 /*!< Shift raw envelope data to support fractional numbers. 107 /*!< Size of exponent-part of a pseudo float envelope value (should be at least 6). 117 #define MASK_M (((1 << (FRACT_BITS - EXP_BITS)) - 1) << EXP_BITS) /*!< Mask for extracting the mantissa of a pseudo float envelope value */ 118 #define MASK_E ((1 << EXP_BITS) - 1) /*!< Mask for extracting the exponent of a pseudo float envelope value */ 121 #define ROUNDING ( (FIXP_SGL)(1<<(EXP_BITS-1)) ) /*!< 0.5-offset for rounding the mantissa of a pseudo-float envelope value */ 187 UCHAR ampResolution; /*!< Amplitude resolution of envelope values (0: 1.5dB, 1: 3dB) */ 235 UCHAR borders[MAX_ENVELOPES+1]; /*!< Envelope borders (in SBR-timeslots, e.g. mp3PRO: 0..11) */ 236 UCHAR freqRes[MAX_ENVELOPES]; /*!< Frequency resolution for each envelope (0=low, 1=high) */ 237 SCHAR tranEnv; /*!< Transient envelope, -1 if none * [all...] |
env_dec.cpp | 86 \brief envelope decoding 87 This module provides envelope decoding and error concealment algorithms. The main 168 \brief Update previous envelope value for delta-coding 170 The current envelope values needs to be stored for delta-coding 171 in the next frame. The stored envelope is always represented with 172 the high frequency resolution. If the current envelope uses the 217 \brief Convert raw envelope and noisefloor data to energy levels 286 /* 1. Unmap (already dequantized) coupled envelope energies */ 358 be constructed with 1 envelope spanning the whole frame (FIX-FIX). 395 /* Generate fake envelope data * [all...] |
env_calc.cpp | 86 \brief Envelope calculation 88 The envelope adjustor compares the energies present in the transposed 95 in time will be called an <em>envelope</em> here. 97 one or more QMF-subbands are grouped to one SBR-band. An envelope contains 109 Therefore the envelope adjustor has access to the spectral data of the 217 and to a specific envelope where the sine shall start. 219 QMF subband. The value of an entry specifies the envelope where a sine 271 If there was a sine in the last frame, let it continue from the first envelope on 414 \brief Apply spectral envelope to subband samples 422 in #hFrameData containts envelope data which is represented by this format bu [all...] |
/external/libvorbis/ |
Android.mk | 13 lib/envelope.c \
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_fmsynth.h | 37 /* FM envelope state */ 54 EAS_U16 envGain; /* envelope target */ 57 EAS_U16 envRate; /* calculated envelope rate */ 58 EAS_U8 envState; /* envelope state */
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_fmsynth.h | 37 /* FM envelope state */ 54 EAS_U16 envGain; /* envelope target */ 57 EAS_U16 envRate; /* calculated envelope rate */ 58 EAS_U8 envState; /* envelope state */
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
KernelAdapter.java | 41 import com.jme3.network.kernel.Envelope; 154 * naive implementation to have one thread grab an Envelope from 155 * connection 1's and another grab the next Envelope. Since an Envelope 162 * out of order Envelope processing.</p> 210 protected void createAndDispatch( Envelope env ) 230 throw new RuntimeException( "Envelope contained incomplete data:" + env ); 270 // Grab the next envelope 271 Envelope e = kernel.read();
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
dynamic_range_compression.h | 90 // The attack time of the envelope detector 92 // The release time of the envelope detector 96 // the internal state of the envelope detector
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
FetchProfile.java | 46 * Download the envelope of the message. This should include at minimum
49 ENVELOPE,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
sfnt_info.h | 88 /* wave table envelope & effect parameters to control EMU8000 */ 94 short modkeyhold, modkeydecay; /* envelope change per key (not used) */ 99 short volkeyhold, volkeydecay; /* envelope change per key (not used) */ 138 struct soundfont_voice_parm parm; /* voice envelope parameters */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
sfnt_info.h | 88 /* wave table envelope & effect parameters to control EMU8000 */ 94 short modkeyhold, modkeydecay; /* envelope change per key (not used) */ 99 short volkeyhold, volkeydecay; /* envelope change per key (not used) */ 138 struct soundfont_voice_parm parm; /* voice envelope parameters */
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
UsimDataDownloadCommands.java | 33 * Dummy BaseCommands for UsimDataDownloadTest. Only implements UICC envelope and 44 private boolean mExpectingSendEnvelope; // true to expect a send envelope command 45 private String mExpectingSendEnvelopeContents; // expected string for send envelope 48 private String mExpectingSendEnvelopeResponse; // Response string for Send Envelope 80 * @param contents expected envelope contents to send 83 * @param response simulated envelope response to return 103 Assert.assertFalse("expecting send envelope call", mExpectingSendEnvelope); 146 Assert.assertTrue("unexpected call to send envelope", mExpectingSendEnvelope);
|
/external/replicaisland/res/values/ |
arrays.xml | 69 <item>ENVELOPE</item>
|
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
Protocol.java | 30 // Maximum size of a message envelope including the header and contents.
|
/external/webrtc/src/modules/audio_processing/agc/ |
analog_agc.h | 51 WebRtc_Word16 targetLevelDbfs; // Target level in -dBfs of envelope (default -3) 86 WebRtc_Word32 env[2][10]; // Envelope values of subframes 89 WebRtc_Word16 envSum; // Filtered scaled envelope in subframes
|
/external/libvorbis/doc/ |
vorbis.html | 82 <li><a href="envelope.html">Temporal envelope shaping and blocksize</a></li> 167 <li><a href="envelope.html">Temporal envelope shaping and blocksize</a>: 168 Use of temporal envelope shaping and variable blocksize to minimize
|