Home
last modified time | relevance | path

Searched refs:convertbuf (Results 1 – 6 of 6) sorted by relevance

/dports/games/openbor/openbor-3caaddd5/engine/source/gamelib/
H A Dmodels.c16 static char convertbuf[MAX_MODELNAME_SIZE]; variable
23 memset(convertbuf,0,MAX_MODELNAME_SIZE); in makelowercp()
24 strcpy(convertbuf, name); in makelowercp()
25 lc(convertbuf, len); in makelowercp()
51 List_InsertAfter(modellist, (void *) model, convertbuf); in addModel()
60 if(List_FindByName(modellist, convertbuf) && (temp = List_Retrieve(modellist))) in deleteModel()
72 if(List_FindByName(modellist, convertbuf)) in findmodel()
/dports/games/openbor3711/openbor-6ec17fa/engine/source/gamelib/
H A Dmodels.c16 static char convertbuf[1024]; variable
22 strncpy(convertbuf, name, 1024); in makelowercp()
23 lc(convertbuf, len); in makelowercp()
42 List_InsertAfter(modellist, (void*) model, convertbuf); in addModel()
50 if(List_FindByName(modellist, convertbuf) && (temp=List_Retrieve(modellist))) { in deleteModel()
60 if(List_FindByName(modellist, convertbuf)) in findmodel()
/dports/games/openbor3979/openbor-2bcf25b/engine/source/gamelib/
H A Dmodels.c16 static char convertbuf[1024]; variable
23 strncpy(convertbuf, name, 1024); in makelowercp()
24 lc(convertbuf, len); in makelowercp()
50 List_InsertAfter(modellist, (void *) model, convertbuf); in addModel()
59 if(List_FindByName(modellist, convertbuf) && (temp = List_Retrieve(modellist))) in deleteModel()
71 if(List_FindByName(modellist, convertbuf)) in findmodel()
/dports/games/openbor3482/openbor-2c1ecd7/engine/source/gamelib/
H A Dmodels.c16 static char convertbuf[1024]; variable
22 strncpy(convertbuf, name, 1024); in makelowercp()
23 lc(convertbuf, len); in makelowercp()
42 List_InsertAfter(modellist, (void*) model, convertbuf); in addModel()
50 if(List_FindByName(modellist, convertbuf) && (temp=List_Retrieve(modellist))) { in deleteModel()
60 if(List_FindByName(modellist, convertbuf)) in findmodel()
/dports/games/openbor4432/openbor-ba1eb4f/engine/source/gamelib/
H A Dmodels.c16 static char convertbuf[1024]; variable
23 strncpy(convertbuf, name, 1024); in makelowercp()
24 lc(convertbuf, len); in makelowercp()
50 List_InsertAfter(modellist, (void *) model, convertbuf); in addModel()
59 if(List_FindByName(modellist, convertbuf) && (temp = List_Retrieve(modellist))) in deleteModel()
71 if(List_FindByName(modellist, convertbuf)) in findmodel()
/dports/ftp/wput/wput-0.6.2/src/
H A Dftp.c275 char convertbuf[DBUFSIZE]; in do_send() local
367 p = convertbuf; in do_send()
373 while ((p < convertbuf + DBUFSIZE) && (d < databuf + readbytes)){ in do_send()
381 convertbytes = p - convertbuf; in do_send()
383 res = socket_write(fsession->ftp->datasock, convertbuf, convertbytes); in do_send()
395 p = convertbuf; in do_send()