/external/kernel-headers/original/linux/ |
zconf.h | 20 that is, 32K for windowBits=15 (default value) plus a few kilobytes 24 /* Maximum value for memLevel in deflateInit2 */ 29 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
adaptive_smooth_no_mmx.cpp | 36 y_start = value of y coordinate of type int that specifies the first 38 x_start = value of x coordinate of type int that specifies the first 40 y_blk_start = value of the y coordinate of type int that specifies the 44 x_blk_start = value of the x coordinate of type int that specifies the 48 thr = value of type int that is compared to the elements in Rec_Y to 49 determine if a particular value in Rec_Y will be modified by 51 width = value of type int that specifies the width of the display 53 max_diff = value of type int that specifies the value that may be added 56 pixel's luminance value [all...] |
/external/openssl/crypto/engine/ |
eng_cnf.c | 92 static int int_engine_configure(char *name, char *value, const CONF *cnf) 107 /* Value is a section containing ENGINE commands */ 108 ecmds = NCONF_get_section(cnf, value); 120 ctrlvalue = ecmd->value; 162 /* Allow "EMPTY" to mean no value: this allows a valid 163 * "value" to be passed to ctrls of type NO_INPUT 169 if (!NCONF_get_number_e(cnf, value, "init", &do_init)) 208 ", value=", ecmd->value); 222 fprintf(stderr, "Called engine module: name %s, value %s\n" [all...] |
/external/oprofile/libop/ |
op_parse_event.c | 47 unsigned long value; local 49 value = strtoul(str, &end, 0); 55 return value;
|
/external/ppp/pppd/plugins/radius/ |
pppd-radius.8 | 44 .BI "avpair " attribute=value 45 Adds an Attribute-Value pair to be passed on to the RADIUS server on each request. 51 Sets Radius NAS-Port attribute value via libradiusclient library
|
/external/proguard/src/proguard/evaluation/value/ |
IdentifiedDoubleValue.java | 21 package proguard.evaluation.value; 24 * This DoubleValue represents a double value that is identified by a unique ID. 35 * Creates a new double value with the given ID.
|
IdentifiedFloatValue.java | 21 package proguard.evaluation.value; 24 * This FloatValue represents a float value that is identified by a unique ID. 35 * Creates a new float value with the given ID.
|
IdentifiedIntegerValue.java | 21 package proguard.evaluation.value; 24 * This IntegerValue represents a integer value that is identified by a unique ID. 35 * Creates a new integer value with the given ID.
|
IdentifiedLongValue.java | 21 package proguard.evaluation.value; 24 * This LongValue represents a long value that is identified by a unique ID. 35 * Creates a new long value with the given ID.
|
/external/qemu/android/ |
boot-properties.h | 32 * -2 property value too long 35 int boot_property_add( const char* name, const char* value ); 40 const char* value, int valuelen );
|
/external/qemu/hw/ |
devices.h | 13 uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len); 20 uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len); 28 void s1d13745_write(void *opaque, int dc, uint16_t value);
|
/external/qemu/ |
qemu-option.h | 42 } value; member in struct:QEMUOptionParameter 60 const char *value); 62 uint64_t value);
|
/external/quake/quake/src/WinQuake/ |
snd_android.cpp | 58 static size_t mod(size_t value, size_t mod) { 59 return value % mod; 62 static size_t next(size_t value, size_t mod) { 63 value = value + 1; 64 if ( value >= mod ) { 65 value = 0; 67 return value; 70 static size_t prev(size_t value, size_t mod) { 71 if ( value <= 0 ) [all...] |
/external/srec/portable/src/ |
LCHAR.c | 150 /* Check for boolean expressed as an integer value */ 158 ESR_ReturnCode LCHARGetInt( LCHAR* text, int* value, LCHAR** finalPosition) 175 rc = lstrtoi(beg, value, 10); 248 * @param value Number to be converted 250 * @param radix Base of value; must be in the range 2 - 36 257 unsigned digval; /* value of digit */ 302 ESR_ReturnCode litostr(int value, LCHAR *string, size_t *len, int radix) 311 if (radix == 10 && value < 0) 312 pxtoa((unsigned long) value, buffer, radix, 1); 314 pxtoa((unsigned long) value, buffer, radix, 0) [all...] |
/external/srec/shared/include/ |
LStringImpl.h | 39 * Underlying string value. 41 LCHAR* value; member in struct:LStringImpl_t 53 ESR_SHARED_API ESR_ReturnCode LString_Append(LString* self, const LCHAR* value);
|
/external/srec/srec/Recognizer/include/ |
SR_RecognizerResult.h | 63 * Returns number of [key, value] pairs in the current results. 87 * Returns copy of semantic value. 92 * @param value [out] The buffer used to hold the resulting value 93 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW, 99 const LCHAR* key, LCHAR* value, size_t* len); 134 * Returns number of [key, value] pairs in the current results. 161 * Returns copy of semantic value. 166 * @param value [out] The buffer used to hold the resulting value [all...] |
/external/stlport/test/eh/ |
locale.cpp | 22 double value; local 23 cin>>value; local 24 cout<<value<<'\n'; local
|
/external/tcpdump/ |
makemib | 181 # new OBJECT IDENTIFIER ::= { parent value } 184 function oidadd(new, parent, value) { 186 if (parent == "0" && value == 0) 189 print "/* oidadd" inn(FILENAME) ":", new, "in", parent, "as", value, "line", $0, "*/" 196 inn(FILENAME), parent, new, value 199 # check if parent.value already exists 200 if (oid[new] > 0 && oid[new] != value) { 202 inn(FILENAME), parent, new, value, oid[new] 205 # check for new name for parent.value 208 if (oid[sib] == value) { [all...] |
/external/webkit/JavaScriptCore/interpreter/ |
CallFrameClosure.h | 42 void setArgument(int arg, JSValue value) 45 newCallFrame[arg - RegisterFile::CallFrameHeaderSize - expectedParams] = value; 47 newCallFrame[arg - RegisterFile::CallFrameHeaderSize - expectedParams - providedParams] = value;
|
/external/webkit/JavaScriptCore/runtime/ |
DateInstance.h | 74 inline DateInstance* asDateInstance(JSValue value) 76 ASSERT(asObject(value)->inherits(&DateInstance::info)); 77 return static_cast<DateInstance*>(asObject(value));
|
InternalFunction.h | 60 inline InternalFunction* asInternalFunction(JSValue value) 62 ASSERT(asObject(value)->inherits(&InternalFunction::info)); 63 return static_cast<InternalFunction*>(asObject(value));
|
JSCell.h | 71 // Extracting the value. 243 inline bool JSValue::getPrimitiveNumber(ExecState* exec, double& number, JSValue& value) 247 value = *this; 252 value = *this; 256 return asCell()->getPrimitiveNumber(exec, number, value); 259 value = *this; 264 value = *this; 269 value = *this; 339 ALWAYS_INLINE void MarkStack::append(JSValue value) 341 ASSERT(value); [all...] |
StringObject.h | 61 inline StringObject* asStringObject(JSValue value) 63 ASSERT(asObject(value)->inherits(&StringObject::info)); 64 return static_cast<StringObject*>(asObject(value));
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.4-2.js | 28 "Boolean") whose value is false. 30 The value of the internal [[Prototype]] property of the Boolean prototype object 63 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.5.26-1.js | 27 value getMilliseconds( ). 29 1. Let t be the result of LocalTime(this time value). 36 6. Set the [[Value]] property of the this value to TimeClip(Result(5)). 37 7. Return the value of the [[Value]] property of the this value. 60 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "; 132 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() ); 133 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() ) [all...] |