Searched defs:def (Results 1 - 25 of 53) sorted by relevance

123

/external/zlib/examples/
H A Dzpipe.c21 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
26 int def(FILE *source, FILE *dest, int level) function
172 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION);
H A Dfitblk.c70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def) argument
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
86 ret = deflate(def, flush);
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def) argument
113 def
134 z_stream def, inf; /* zlib deflate and inflate states */ local
[all...]
/external/fsck_msdos/
H A Dmain.c132 ask(int def, const char *fmt, ...) argument
141 def = 0;
142 if (def)
144 return def;
/external/freetype/include/freetype/
H A Dftmm.h127 /* def :: The axis's default design coordinate. */
145 FT_Fixed def; member in struct:FT_Var_Axis_
/external/emma/core/java12/com/vladium/util/
H A DProperty.java197 public static String getSystemProperty (final String key, final String def) argument
201 return System.getProperty (key, def);
205 return def;
/external/icu4c/test/intltest/
H A Ddtfmapts.cpp107 DateFormat *def = DateFormat::createInstance(); local
112 if (def == NULL || fr == NULL || it == NULL || de == NULL){
117 if (fr != NULL && def != NULL)
152 if (def != NULL)
160 def->parseObject(text, result1, pos);
167 result2 = def->parse(text, status);
174 result3 = def->parse(text, pos01);
197 const Calendar *cal = def->getCalendar();
205 const NumberFormat *nf = def->getNumberFormat();
213 const TimeZone& tz = def
[all...]
H A Dnmfmapts.cpp69 NumberFormat *def = NumberFormat::createInstance(status); local
185 if (fr != NULL && def != NULL)
197 fr->setParseIntegerOnly( def->isParseIntegerOnly() );
198 if(fr->isParseIntegerOnly() != def->isParseIntegerOnly() ) {
202 fr->setGroupingUsed( def->isGroupingUsed() );
203 if(fr->isGroupingUsed() != def->isGroupingUsed() ) {
207 fr->setMaximumIntegerDigits( def->getMaximumIntegerDigits() );
208 if(fr->getMaximumIntegerDigits() != def->getMaximumIntegerDigits() ) {
212 fr->setMinimumIntegerDigits( def->getMinimumIntegerDigits() );
213 if(fr->getMinimumIntegerDigits() != def
[all...]
/external/iptables/extensions/
H A Dlibipt_connrate.c38 parse_value(const char *arg, u_int32_t def) argument
46 return def;
/external/srec/srec/include/
H A Dduk_args.h83 char *def; member in struct:__anon5045
87 #define SET_ARG_ENTRY(A,W,X,Y,Z) ((A)->typ=(W), (A)->flag=(X), (A)->name.a_string=(Y), (A)->max_args=1, (A)->def=(Z))
88 #define SET_ARRAY_ARG_ENTRY(A,W,X,Y,N,Z) ((A)->typ=((W)|A_ARRAY), (A)->flag=(X), (A)->name.a_string=(Y), (A)->max_args=(N), (A)->def=(Z))
/external/bluetooth/bluez/tools/
H A Dcsr.c455 char *csr_builddeftostr(uint16_t def) argument
457 switch (def) {
H A Dbccmd.c243 uint16_t def = 0x0000, nextdef = 0x0000; local
252 array[0] = def & 0xff;
253 array[1] = def >> 8;
266 def = nextdef;
268 printf("0x%04x - %s\n", def, csr_builddeftostr(def));
/external/e2fsprogs/e2fsck/
H A Dutil.c127 int ask_yn(const char * string, int def) argument
145 if (def == 1)
147 else if (def == 0)
169 def = 1;
173 def = 0;
176 else if ((c == ' ' || c == '\n') && (def != -1))
179 if (def)
186 return def;
189 int ask (e2fsck_t ctx, const char * string, int def) argument
200 printf ("%s? %s\n\n", string, def
[all...]
/external/v8/src/
H A Ddata-flow.cc323 DefinitionInfo* def = new DefinitionInfo(); local
324 expr->AsFunctionLiteral()->defined_vars()->Add(def);
332 use_site->set_var_def(def);
334 def->set_last_use(use_site);
/external/wpa_supplicant/
H A Dconfig_file.c435 static void write_int(FILE *f, const char *field, int value, int def) argument
437 if (value == def)
578 #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
H A Dconfig_winreg.c409 int def)
414 if (val == def) {
557 static void write_int(HKEY hk, const char *field, int value, int def) argument
560 if (value == def)
728 #define INT_DEF(t, def) write_int(netw, #t, ssid->t, def)
408 wpa_config_write_reg_dword(HKEY hk, const TCHAR *name, int val, int def) argument
/external/qemu/hw/
H A Dqdev.c198 uint64_t qdev_get_prop_int(DeviceState *dev, const char *name, uint64_t def) argument
204 return def;
H A Dbt-sdp.c699 struct sdp_def_service_s *def, int handle)
706 while (def->attributes[record->attributes].data.type) {
708 len += sdp_attr_max_size(&def->attributes[record->attributes ++].data,
720 while (def->attributes[record->attributes].data.type) {
725 data[len ++] = def->attributes[record->attributes].id >> 8;
726 data[len ++] = def->attributes[record->attributes].id & 0xff;
728 &def->attributes[record->attributes].data, &uuid);
731 if (def->attributes[record->attributes].id == SDP_ATTR_RECORD_HANDLE)
732 def->attributes[record->attributes].data.value.uint = handle;
698 sdp_service_record_build(struct sdp_service_record_s *record, struct sdp_def_service_s *def, int handle) argument
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig_winreg.c475 int def)
480 if (val == def) {
645 static void write_int(HKEY hk, const char *field, int value, int def) argument
648 if (value == def)
817 #define INT_DEF(t, def) write_int(netw, #t, ssid->t, def)
818 #define INT_DEFe(t, def) write_int(netw, #t, ssid->eap.t, def)
474 wpa_config_write_reg_dword(HKEY hk, const TCHAR *name, int val, int def) argument
/external/dbus/bus/
H A Dpolicy.c380 list_allows_user (dbus_bool_t def, argument
389 allowed = def;
/external/icu4c/test/cintltst/
H A Dcdtrgtst.c129 UDateFormat *def; local
162 def = udat_open(UDAT_IGNORE,UDAT_IGNORE,NULL, NULL, 0, pat, u_strlen(pat), &status);
169 udat_set2DigitYearStart(def, start, &status);
172 if( (udat_get2DigitYearStart(def, &status) != start))
179 got = udat_parse(def, s, u_strlen(s), 0, &status);
180 gotdate=myFormatit(def, got);
181 expdate=myFormatit(def, exp);
192 udat_close(def);
203 UDateFormat* def; local
213 def
[all...]
H A Dcnmdptst.c680 UNumberFormat *def; local
683 def=unum_open(style, NULL,0,NULL,NULL, &status);
689 dvalue=unum_getDoubleAttribute(def, attr);
693 unum_setDoubleAttribute(def, attr, dvalue);
694 if(unum_getDoubleAttribute(def,attr)!=mydata[i])
701 unum_close(def);
/external/libxml2/
H A Dlegacy.c988 * @def: the type of default value
997 int type, int def, const xmlChar * defaultValue,
1001 xmlSAX2AttributeDecl(ctx, elem, fullname, type, def, defaultValue,
996 attributeDecl(void *ctx, const xmlChar * elem, const xmlChar * fullname, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
/external/qemu/target-arm/
H A Dop_helper.c46 uint32_t HELPER(neon_tbl)(uint32_t ireg, uint32_t def, argument
62 val |= def & (0xff << shift);
/external/quake/quake/src/QW/server/
H A Dpr_edict.c146 ddef_t *def; local
151 def = &pr_globaldefs[i];
152 if (def->ofs == ofs)
153 return def;
165 ddef_t *def; local
170 def = &pr_fielddefs[i];
171 if (def->ofs == ofs)
172 return def;
184 ddef_t *def; local
189 def
204 ddef_t *def; local
238 ddef_t *def = NULL; local
277 ddef_t *def; local
329 ddef_t *def; local
379 ddef_t *def; local
404 ddef_t *def; local
610 ddef_t *def; local
724 ddef_t *def; local
[all...]
/external/quake/quake/src/WinQuake/
H A Dpr_edict.cpp150 ddef_t *def; local
155 def = &pr_globaldefs[i];
156 if (def->ofs == ofs)
157 return def;
169 ddef_t *def; local
174 def = &pr_fielddefs[i];
175 if (def->ofs == ofs)
176 return def;
188 ddef_t *def; local
193 def
208 ddef_t *def; local
243 ddef_t *def = NULL; local
283 ddef_t *def; local
335 ddef_t *def; local
385 ddef_t *def; local
410 ddef_t *def; local
618 ddef_t *def; local
732 ddef_t *def; local
[all...]

Completed in 714 milliseconds

123