Home
last modified time | relevance | path

Searched refs:OBJ_STRING (Results 1 – 25 of 90) sorted by relevance

1234

/dports/net/tightvnc/vnc_unixsrc/Xvnc/lib/font/Type1/
H A Dutil.h95 #define OBJ_STRING (4) macro
140 #define objIsString(o) ((o).type == OBJ_STRING)
151 #define objSetString(o) ((o).type = OBJ_STRING)
162 #define objPIsString(o) ((o)->type == OBJ_STRING)
173 #define objPSetString(o) ((o)->type = OBJ_STRING)
/dports/devel/t1lib/t1lib-5.1.2/lib/type1/
H A Dutil.h95 #define OBJ_STRING (4) macro
140 #define objIsString(o) ((o).type == OBJ_STRING)
151 #define objSetString(o) ((o).type = OBJ_STRING)
162 #define objPIsString(o) ((o)->type == OBJ_STRING)
173 #define objPSetString(o) ((o)->type = OBJ_STRING)
/dports/math/grace/grace-5.1.25/T1lib/type1/
H A Dutil.h95 #define OBJ_STRING (4) macro
140 #define objIsString(o) ((o).type == OBJ_STRING)
151 #define objSetString(o) ((o).type = OBJ_STRING)
162 #define objPIsString(o) ((o)->type == OBJ_STRING)
173 #define objPSetString(o) ((o)->type = OBJ_STRING)
/dports/print/texlive-base/texlive-20150521-source/texk/ps2pk/
H A Dutil.h97 #define OBJ_STRING (4) macro
142 #define objIsString(o) ((o).type == OBJ_STRING)
153 #define objSetString(o) ((o).type = OBJ_STRING)
164 #define objPIsString(o) ((o)->type == OBJ_STRING)
175 #define objPSetString(o) ((o)->type = OBJ_STRING)
/dports/databases/redis5/redis-5.0.14/src/
H A Dt_string.c163 if (o->type != OBJ_STRING) { in getGenericCommand()
209 o = createObject(OBJ_STRING,sdsnewlen(NULL, offset+sdslen(value))); in setrangeCommand()
215 if (checkType(c,o,OBJ_STRING)) in setrangeCommand()
255 checkType(c,o,OBJ_STRING)) return; in getrangeCommand()
294 if (o->type != OBJ_STRING) { in mgetCommand()
344 if (o != NULL && checkType(c,o,OBJ_STRING)) return; in incrDecrCommand()
404 if (o != NULL && checkType(c,o,OBJ_STRING)) return; in incrbyfloatCommand()
446 if (checkType(c,o,OBJ_STRING)) in appendCommand()
469 checkType(c,o,OBJ_STRING)) return; in strlenCommand()
H A Dobject.c78 return createObject(OBJ_STRING, sdsnewlen(ptr,len)); in createRawStringObject()
88 o->type = OBJ_STRING; in createEmbeddedStringObject()
149 o = createObject(OBJ_STRING, NULL); in createStringObjectFromLongLongWithOptions()
196 serverAssert(o->type == OBJ_STRING); in dupStringObject()
204 d = createObject(OBJ_STRING, NULL); in dupStringObject()
356 case OBJ_STRING: freeStringObject(o); break; in decrRefCount()
409 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in isObjectRepresentableAsLongLong()
440 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in tryObjectEncoding()
542 serverAssertWithInfo(NULL,a,a->type == OBJ_STRING && b->type == OBJ_STRING); in compareStringObjectsWithFlags()
599 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in stringObjectLen()
[all …]
H A Dserver.c1462 shared.nokeyerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1464 shared.syntaxerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1472 shared.loadingerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1478 shared.bgsaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1480 shared.roslaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1482 shared.noautherr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1484 shared.oomerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1490 shared.busykeyerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
1501 shared.select[j] = createObject(OBJ_STRING, in createSharedObjects()
1526 shared.mbulkhdr[j] = createObject(OBJ_STRING, in createSharedObjects()
[all …]
H A Dslowlog.c60 se->argv[j] = createObject(OBJ_STRING, in slowlogCreateEntry()
65 if (argv[j]->type == OBJ_STRING && in slowlogCreateEntry()
74 se->argv[j] = createObject(OBJ_STRING,s); in slowlogCreateEntry()
H A Dnotify.c121 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
133 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
H A Dbitops.c483 o = createObject(OBJ_STRING,sdsnewlen(NULL, byte+1)); in lookupStringForBitCommand()
486 if (checkType(c,o,OBJ_STRING)) return NULL; in lookupStringForBitCommand()
507 serverAssert(o->type == OBJ_STRING); in getObjectReadOnlyString()
575 checkType(c,o,OBJ_STRING)) return; in getbitCommand()
638 if (checkType(c,o,OBJ_STRING)) { in bitopCommand()
756 o = createObject(OBJ_STRING,res); in bitopCommand()
777 checkType(c,o,OBJ_STRING)) return; in bitcountCommand()
841 if (checkType(c,o,OBJ_STRING)) return; in bitposCommand()
997 if (o != NULL && checkType(c,o,OBJ_STRING)) { in bitfieldCommand()
/dports/databases/redis6/redis-6.0.16/src/
H A Dt_string.c170 if (o->type != OBJ_STRING) { in getGenericCommand()
216 o = createObject(OBJ_STRING,sdsnewlen(NULL, offset+sdslen(value))); in setrangeCommand()
222 if (checkType(c,o,OBJ_STRING)) in setrangeCommand()
262 checkType(c,o,OBJ_STRING)) return; in getrangeCommand()
301 if (o->type != OBJ_STRING) { in mgetCommand()
351 if (o != NULL && checkType(c,o,OBJ_STRING)) return; in incrDecrCommand()
411 if (o != NULL && checkType(c,o,OBJ_STRING)) return; in incrbyfloatCommand()
456 if (checkType(c,o,OBJ_STRING)) in appendCommand()
479 checkType(c,o,OBJ_STRING)) return; in strlenCommand()
537 if ((obja && obja->type != OBJ_STRING) || in stralgoLCS()
[all …]
H A Dobject.c78 return createObject(OBJ_STRING, sdsnewlen(ptr,len)); in createRawStringObject()
88 o->type = OBJ_STRING; in createEmbeddedStringObject()
149 o = createObject(OBJ_STRING, NULL); in createStringObjectFromLongLongWithOptions()
196 serverAssert(o->type == OBJ_STRING); in dupStringObject()
204 d = createObject(OBJ_STRING, NULL); in dupStringObject()
364 case OBJ_STRING: freeStringObject(o); break; in decrRefCount()
417 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in isObjectRepresentableAsLongLong()
448 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in tryObjectEncoding()
550 serverAssertWithInfo(NULL,a,a->type == OBJ_STRING && b->type == OBJ_STRING); in compareStringObjectsWithFlags()
607 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in stringObjectLen()
[all …]
H A Dserver.c2243 shared.nokeyerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2245 shared.syntaxerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2253 shared.loadingerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2259 shared.bgsaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2261 shared.roslaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2263 shared.noautherr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2265 shared.oomerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2271 shared.busykeyerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
2303 shared.select[j] = createObject(OBJ_STRING, in createSharedObjects()
2330 shared.mbulkhdr[j] = createObject(OBJ_STRING, in createSharedObjects()
[all …]
H A Dslowlog.c60 se->argv[j] = createObject(OBJ_STRING, in slowlogCreateEntry()
65 if (argv[j]->type == OBJ_STRING && in slowlogCreateEntry()
74 se->argv[j] = createObject(OBJ_STRING,s); in slowlogCreateEntry()
H A Dbitops.c485 o = createObject(OBJ_STRING,sdsnewlen(NULL, byte+1)); in lookupStringForBitCommand()
488 if (checkType(c,o,OBJ_STRING)) return NULL; in lookupStringForBitCommand()
509 serverAssert(o->type == OBJ_STRING); in getObjectReadOnlyString()
577 checkType(c,o,OBJ_STRING)) return; in getbitCommand()
640 if (checkType(c,o,OBJ_STRING)) { in bitopCommand()
758 o = createObject(OBJ_STRING,res); in bitopCommand()
780 checkType(c,o,OBJ_STRING)) return; in bitcountCommand()
844 if (checkType(c,o,OBJ_STRING)) return; in bitposCommand()
1006 if (o != NULL && checkType(c,o,OBJ_STRING)) { in bitfieldGeneric()
H A Dnotify.c123 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
135 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
/dports/databases/redis-devel/redis-0e5b813/src/
H A Dobject.c78 return createObject(OBJ_STRING, sdsnewlen(ptr,len)); in createRawStringObject()
88 o->type = OBJ_STRING; in createEmbeddedStringObject()
130 return createObject(OBJ_STRING, str); in tryCreateRawStringObject()
164 o = createObject(OBJ_STRING, NULL); in createStringObjectFromLongLongWithOptions()
211 serverAssert(o->type == OBJ_STRING); in dupStringObject()
219 d = createObject(OBJ_STRING, NULL); in dupStringObject()
372 case OBJ_STRING: freeStringObject(o); break; in decrRefCount()
546 case OBJ_STRING: dismissStringObject(o); break; in dismissObject()
580 serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); in isObjectRepresentableAsLongLong()
713 serverAssertWithInfo(NULL,a,a->type == OBJ_STRING && b->type == OBJ_STRING); in compareStringObjectsWithFlags()
[all …]
H A Dt_string.c320 if (checkType(c,o,OBJ_STRING)) { in getGenericCommand()
366 if (checkType(c,o,OBJ_STRING)) { in getexCommand()
468 if (checkType(c,o,OBJ_STRING)) in setrangeCommand()
508 checkType(c,o,OBJ_STRING)) return; in getrangeCommand()
547 if (o->type != OBJ_STRING) { in mgetCommand()
598 if (checkType(c,o,OBJ_STRING)) return; in incrDecrCommand()
661 if (checkType(c,o,OBJ_STRING)) return; in incrbyfloatCommand()
702 if (checkType(c,o,OBJ_STRING)) in appendCommand()
725 checkType(c,o,OBJ_STRING)) return; in strlenCommand()
739 if ((obja && obja->type != OBJ_STRING) || in lcsCommand()
[all …]
H A Dslowlog.c60 se->argv[j] = createObject(OBJ_STRING, in slowlogCreateEntry()
65 if (argv[j]->type == OBJ_STRING && in slowlogCreateEntry()
74 se->argv[j] = createObject(OBJ_STRING,s); in slowlogCreateEntry()
H A Dnotify.c126 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
138 chanobj = createObject(OBJ_STRING, chan); in notifyKeyspaceEvent()
H A Dbitops.c484 if (checkType(c,o,OBJ_STRING)) return NULL; in lookupStringForBitCommand()
488 o = createObject(OBJ_STRING,sdsnewlen(NULL, byte+1)); in lookupStringForBitCommand()
512 serverAssert(!o || o->type == OBJ_STRING); in getObjectReadOnlyString()
588 checkType(c,o,OBJ_STRING)) return; in getbitCommand()
652 if (checkType(c,o,OBJ_STRING)) { in bitopCommand()
780 o = createObject(OBJ_STRING,res); in bitopCommand()
805 checkType(c,o,OBJ_STRING)) return; in bitcountCommand()
900 if (checkType(c,o,OBJ_STRING)) return; in bitposCommand()
1111 if (o != NULL && checkType(c,o,OBJ_STRING)) { in bitfieldGeneric()
H A Dserver.c3501 shared.plus = createObject(OBJ_STRING,sdsnew("+")); in createSharedObjects()
3507 shared.nokeyerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3509 shared.syntaxerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3517 shared.loadingerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3523 shared.bgsaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3525 shared.roslaveerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3527 shared.noautherr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3529 shared.oomerr = createObject(OBJ_STRING,sdsnew( in createSharedObjects()
3564 shared.select[j] = createObject(OBJ_STRING, in createSharedObjects()
3628 shared.mbulkhdr[j] = createObject(OBJ_STRING, in createSharedObjects()
[all …]
/dports/lang/slisp/slisp-1.2/src/
H A Dobject.c100 if (p->type == OBJ_STRING && !strcmp(p->value.s, s)) in search_object_string()
194 case OBJ_STRING: return "string"; in obj_type_str()
259 case OBJ_STRING: in do_garbage_collect()
H A Dfuncs.c363 case OBJ_STRING: in princ_object()
396 if (p1->type == OBJ_STRING) in F_princ()
419 case OBJ_STRING: in F_atom()
487 case OBJ_STRING: in F_eq()
821 if (p != nil && cdr(args) == nil && p->type == OBJ_STRING) { in F_dump_memory()
915 case OBJ_STRING: in eval()
H A Dslisp.h37 #define OBJ_STRING 12 macro

1234