Searched defs:frequency (Results 1 - 25 of 102) sorted by relevance

12345

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofile-handler.h137 int32 frequency; /* Profiling frequency */ member in struct:ProfileHandlerState
H A Dprofiledata.h91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) { argument
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofile-handler.h137 int32 frequency; /* Profiling frequency */ member in struct:ProfileHandlerState
H A Dprofiledata.h91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) { argument
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
/external/chromium_org/third_party/angle/util/win32/
H A DWin32Timer.cpp18 LARGE_INTEGER frequency; local
19 QueryPerformanceFrequency(&frequency);
20 mFrequency = frequency.QuadPart;
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fakes/
H A Dfake_media_process.h17 FakeMediaProcess() : frequency(0) {}
27 sin(2.0 * 3.14 * frequency * 400.0 / sampling_freq_hz));
32 frequency * 400.0 / sampling_freq_hz));
35 frequency * 400.0 / sampling_freq_hz));
37 frequency++;
42 int frequency; member in class:FakeMediaProcess
/external/chromium_org/tools/ipc_fuzzer/mutate/
H A Drand_util.h34 inline bool RandEvent(uint32 frequency) { argument
35 return RandInRange(frequency) == 0;
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Ddecoder-oina.c41 OI_UINT8 frequency,
48 if (frequency > SBC_FREQ_48000) {
83 context->common.frameInfo.freqIndex = frequency;
39 OI_CODEC_SBC_DecoderConfigureRaw(OI_CODEC_SBC_DECODER_CONTEXT *context, OI_BOOL enhanced, OI_UINT8 frequency, OI_UINT8 mode, OI_UINT8 subbands, OI_UINT8 blocks, OI_UINT8 alloc, OI_UINT8 maxBitpool) argument
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dskpdiff_util.cpp90 LARGE_INTEGER frequency; local
92 QueryPerformanceFrequency(&frequency);
93 return (double)currentTime.QuadPart / (double)frequency.QuadPart;
/external/qemu/distrib/sdl-1.2.15/src/audio/sun/
H A DSDL_sunaudio.h42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowScanResult.java14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) { argument
20 scanResult.frequency = frequency;
31 .append(", frequency: ").append(realObject.frequency)
/external/skia/tools/skpdiff/
H A Dskpdiff_util.cpp90 LARGE_INTEGER frequency; local
92 QueryPerformanceFrequency(&frequency);
93 return (double)currentTime.QuadPart / (double)frequency.QuadPart;
/external/skia/tools/timer/
H A DSysTimer_windows.cpp48 LARGE_INTEGER frequency; local
49 if (0 == ::QueryPerformanceFrequency(&frequency)) {
53 / static_cast<double>(frequency.QuadPart)
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DBiquadFilterNode.h58 AudioParam* frequency() { return biquadProcessor()->parameter1(); } function in class:blink::FINAL
H A DOscillatorNode.h68 AudioParam* frequency() { return m_frequency.get(); } function in class:blink::FINAL
91 // Detune value (deviating from the frequency) in Cents.
103 // Stores sample-accurate values calculated according to frequency and detune.
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh61 QueryPerformanceFrequency(&frequency);
80 return ((double)L.QuadPart /(double)frequency.QuadPart) ;
85 LARGE_INTEGER frequency; member in class:Portable_Timer
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_group_add.py17 print " [-f <frequency>] [-o <group_object_path>] \ "
22 print " -f = frequency"
51 global frequency
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency,
70 self.frequency = frequency
126 if (self.frequency != None):
127 if (int(self.frequency) > 0):
128 self.P2PDictionary.update({'frequency':int(self.frequency)})
160 frequency = None variable
[all...]
/external/chromium_org/components/wifi/
H A Dnetwork_properties.h47 Frequency frequency; member in struct:wifi::NetworkProperties
H A Dwifi_test.cc94 " [--frequency=0|2400|5000]"
112 std::string frequency = local
113 parsed_command_line.GetSwitchValueASCII("frequency");
154 // Optional properties (frequency, password) to use for connect or create.
157 if (!frequency.empty()) {
159 if (base::StringToInt(frequency, &value)) {
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DVertexDeclarationCache.cpp122 UINT frequency = 1; local
126 frequency = D3DSTREAMSOURCE_INDEXEDDATA | instances;
130 frequency = D3DSTREAMSOURCE_INSTANCEDATA | attributes[i].divisor;
133 device->SetStreamSourceFreq(stream, frequency);
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DRTPFile.h31 const uint16_t payloadSize, uint32_t frequency) = 0;
50 uint32_t frequency);
59 uint32_t frequency; member in class:webrtc::RTPPacket
70 const uint16_t payloadSize, uint32_t frequency) OVERRIDE;
102 const uint16_t payloadSize, uint32_t frequency) OVERRIDE;
H A DPCMFile.cc85 printf("Enter the sampling frequency (in Hz) of the above file [%u]: ",
95 void PCMFile::Open(const std::string& file_name, uint16_t frequency, argument
101 frequency_ = frequency;
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_wave.h50 Uint32 frequency; /* One of 11025, 22050, or 44100 Hz */ member in struct:WaveFMT
/external/chromium_org/media/cast/
H A Dcast_config.h53 int frequency; member in struct:media::cast::AudioSenderConfig
139 int frequency; // TODO(miu): Rename to rtp_timebase for clarity. member in struct:media::cast::FrameReceiverConfig
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_receiver_video.cc46 uint32_t frequency) {
43 OnNewPayloadTypeCreated( const char payload_name[RTP_PAYLOAD_NAME_SIZE], int8_t payload_type, uint32_t frequency) argument

Completed in 1691 milliseconds

12345