Searched defs:level (Results 1 - 25 of 1315) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/
H A Dyaffs_guts.c76 static int yaffs_DeleteWorker(yaffs_Object * in, yaffs_Tnode * tn, __u32 level,
823 * in the tree. 0 means only the level 0 tnode is in the tree.
826 /* FindLevel0Tnode finds the level 0 tnode, if one exists. */
835 int level = fStruct->topLevel; local
837 /* Check sane level and chunk Id */
838 if (level < 0 || level > YAFFS_TNODES_MAX_LEVEL) {
860 /* Traverse down to level 0 */
861 while (level > 0 && tn) {
865 (level
1013 yaffs_DeleteWorker(yaffs_Object * in, yaffs_Tnode * tn, __u32 level, int chunkOffset, int *limit) argument
1124 yaffs_SoftDeleteWorker(yaffs_Object * in, yaffs_Tnode * tn, __u32 level, int chunkOffset) argument
1216 yaffs_PruneWorker(yaffs_Device * dev, yaffs_Tnode * tn, __u32 level, int del0) argument
3608 yaffs_CheckpointTnodeWorker(yaffs_Object * in, yaffs_Tnode * tn, __u32 level, int chunkOffset) argument
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDeflater.cs22 private static extern int deflateInit_(ref ZStream sz, int level, string vs, int size); argument
37 /// <param name="level">The compression level to use for this <c>Deflater</c></param>
38 public Deflater(CompressLevel level) : base() argument
40 int retval = deflateInit_(ref _ztream, (int)level, Info.Version, Marshal.SizeOf(_ztream));
H A DGZipStream.cs51 /// <param name="level">The compression level to use when adding data</param>
53 public GZipStream(string fileName, CompressLevel level) argument
56 _gzFile = gzopen(fileName, String.Format("wb{0}", (int)level));
/external/zlib/src/contrib/minizip/
H A Dunzip.c1473 int* level, int raw, const char* password)
1521 if (level!=NULL)
1523 *level = 6;
1526 case 6 : *level = 1; break;
1527 case 4 : *level = 2; break;
1528 case 2 : *level = 9; break;
1651 extern int ZEXPORT unzOpenCurrentFile2 (unzFile file, int* method, int* level, int raw) argument
1653 return unzOpenCurrentFile3(file, method, level, raw, NULL);
1472 unzOpenCurrentFile3(unzFile file, int* method, int* level, int raw, const char* password) argument
H A Dzip.c1058 const char* comment, int method, int level, int raw,
1116 if ((level==8) || (level==9))
1118 if (level==2)
1120 if (level==1)
1221 err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
1234 err = BZ2_bzCompressInit(&zi->ci.bstream, level, 0,35);
1268 const char* comment, int method, int level, int raw,
1276 comment, method, level, raw,
1284 const char* comment, int method, int level, in
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1265 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1281 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1296 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
1311 zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw) argument
1324 zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int zip64) argument
1337 zipOpenNewFileInZip64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int zip64) argument
1350 zipOpenNewFileInZip(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level) argument
[all...]
/external/zlib/src/
H A Ddeflate.h185 int level; /* compression level (1..9) */ member in struct:internal_state
H A Dgzguts.h182 int level; /* compression level */ member in struct:__anon34354
/external/zlib/src/examples/
H A Dgzappend.c258 stream is initialized to compress using level "level" */
259 local int gzscan(char *name, z_stream *strm, int level) argument
368 ret = deflateInit2(strm, level, Z_DEFLATED, -15, 8, Z_DEFAULT_STRATEGY);
462 /* process the compression level option if present, scan the gzip file, and
468 int gd, level; local
480 "usage: gzappend [-level] file.gz [ addthis [ andthis ... ]]\n");
484 /* set compression level */
485 level = Z_DEFAULT_COMPRESSION;
488 bye("invalid compression level", "");
[all...]
H A Dzpipe.c33 level is supplied, Z_VERSION_ERROR if the version of zlib.h and the
36 int def(FILE *source, FILE *dest, int level) argument
48 ret = deflateInit(&strm, level);
162 fputs("invalid compression level\n", stderr);
/external/webrtc/src/
H A Dcommon_types.h100 virtual void Print(const TraceLevel level,
330 // can be used on embedded devices where the the capture signal is level
493 char level; member in struct:webrtc::VideoCodecH264
517 char level; member in struct:webrtc::VideoCodecMPEG4
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c119 static void WebRtcAec_InitLevel(power_level_t *level);
121 static void UpdateLevel(power_level_t* level, float in[2][PART_LEN1]);
436 // Default target suppression level
1290 static void WebRtcAec_InitLevel(power_level_t *level) argument
1294 level->averagelevel = 0;
1295 level->framelevel = 0;
1296 level->minlevel = bigFloat;
1297 level->frsum = 0;
1298 level->sfrsum = 0;
1299 level
1316 UpdateLevel(power_level_t* level, float in[2][PART_LEN1]) argument
[all...]
/external/webrtc/src/modules/audio_processing/
H A Decho_cancellation_impl.cc27 WebRtc_Word16 MapSetting(EchoCancellation::SuppressionLevel level) { argument
28 switch (level) {
179 int EchoCancellationImpl::set_suppression_level(SuppressionLevel level) { argument
181 if (MapSetting(level) == -1) {
185 suppression_level_ = level;
H A Dgain_control_impl.cc190 // Take the analog level to be the average across the handles.
204 int GainControlImpl::set_stream_analog_level(int level) { argument
206 if (level < minimum_capture_level_ || level > maximum_capture_level_) {
211 if (level != analog_capture_level_) {
212 // The analog level has been changed; update our internal levels.
213 capture_levels_.assign(num_handles(), level); local
216 analog_capture_level_ = level;
284 int GainControlImpl::set_target_level_dbfs(int level) { argument
286 if (level > 3
[all...]
H A Dlevel_estimator_impl.cc58 // Normalize by the max level.
98 Level* level = static_cast<Level*>(handle(0)); local
100 level->ProcessMuted(audio->samples_per_channel());
110 level->Process(mixed_data, audio->samples_per_channel());
129 Level* level = static_cast<Level*>(handle(0)); local
130 return level->RMS();
146 Level* level = static_cast<Level*>(handle); local
147 delete level;
153 Level* level = static_cast<Level*>(handle); local
154 level
[all...]
H A Dnoise_suppression_impl.cc34 int MapSetting(NoiseSuppression::Level level) { argument
35 switch (level) {
99 int NoiseSuppressionImpl::set_level(Level level) { argument
101 if (MapSetting(level) == -1) {
105 level_ = level;
109 NoiseSuppression::Level NoiseSuppressionImpl::level() const { function in class:webrtc::NoiseSuppressionImpl
/external/webrtc/src/modules/audio_processing/test/
H A Dprocess_test.cc287 int level; local
288 ASSERT_EQ(1, sscanf(argv[i], "%d", &level));
292 apm->gain_control()->set_target_level_dbfs(level));
621 apm->gain_control()->set_stream_analog_level(msg.level()));
647 ASSERT_EQ(msg.level(), capture_level);
H A Dunit_test.cc355 // -- Missing AGC level --
500 EchoCancellation::SuppressionLevel level[] = { local
505 for (size_t i = 0; i < sizeof(level)/sizeof(*level); i++) {
507 apm_->echo_cancellation()->set_suppression_level(level[i]));
508 EXPECT_EQ(level[i],
674 // Testing invalid level limits
686 // Testing valid level limits
724 NoiseSuppression::Level level[] = { local
730 for (size_t i = 0; i < sizeof(level)/sizeo
[all...]
H A Dunpack.cc38 DEFINE_string(level_file, "level.int32", "The name of the level file.");
185 int32_t level = msg.level(); local
186 if (fwrite(&level, sizeof(int32_t), 1, level_file) != 1) {
/external/webrtc/src/system_wrappers/source/
H A Dthread_unittest.cc22 virtual void Print(const TraceLevel level, argument
H A Dtrace_impl.cc37 const TraceLevel level)
43 if((level != kTraceAll) && (count_operation == kAddRefNoCreate))
45 if(!(level & levelFilter))
55 TraceImpl* TraceImpl::GetTrace(const TraceLevel level) argument
57 return StaticInstance(kAddRefNoCreate, level);
148 WebRtc_Word32 TraceImpl::AddLevel(char* szMessage, const TraceLevel level) const
150 switch (level)
424 const TraceLevel level) {
427 _callback->Print(level, traceMessage, length);
466 _level[_activeQueue][idx] = level;
36 StaticInstance(CountOperation count_operation, const TraceLevel level) argument
421 AddMessageToList( const char traceMessage[WEBRTC_TRACE_MAX_MESSAGE_SIZE], const WebRtc_UWord16 length, const TraceLevel level) argument
601 AddImpl(const TraceLevel level, const TraceModule module, const WebRtc_Word32 id, const char msg[WEBRTC_TRACE_MAX_MESSAGE_SIZE]) argument
798 Add(const TraceLevel level, const TraceModule module, const WebRtc_Word32 id, const char* msg, ...) argument
[all...]
H A Dunittest_utilities.h26 virtual void Print(const TraceLevel level, argument
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c51 static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
109 char *level)
113 wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
122 "level", (u8 *) from->sun_path, fromlen -
124 dst->debug_level = atoi(level);
1364 int level = MSG_DEBUG; local
1374 level = MSG_EXCESSIVE;
1375 wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
1597 static void hostapd_ctrl_iface_msg_cb(void *ctx, int level, int global, argument
1603 hostapd_ctrl_iface_send(hapd, level, tx
106 hostapd_ctrl_iface_level(struct hostapd_data *hapd, struct sockaddr_un *from, socklen_t fromlen, char *level) argument
2038 hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level, const char *buf, size_t len) argument
[all...]
H A Dmain.c44 int level, const char *txt, size_t len)
112 if ((conf_stdout & module) && level >= conf_stdout_level) {
118 if ((conf_syslog & module) && level >= conf_syslog_level) {
120 switch (level) {
43 hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module, int level, const char *txt, size_t len) argument
/external/wpa_supplicant_8/hostapd/src/ap/
H A Ddrv_callbacks.c954 int level = MSG_DEBUG; local
964 level = MSG_EXCESSIVE;
967 level = MSG_EXCESSIVE;
970 wpa_dbg(hapd->msg_ctx, level, "Event %s (%d) received",
H A Dieee802_1x.c1909 eapol_logger_level level, const char *txt)
1915 switch (level) {
1908 ieee802_1x_logger(void *ctx, const u8 *addr, eapol_logger_level level, const char *txt) argument

Completed in 229 milliseconds

1234567891011>>