Displaying 8 results from an estimated 8 matches for "clearflag".
Did you mean:
clear_flag
2003 Nov 12
1
ADSI Functions
Does anyone know where I can get a list of ADSI functions.. Example *70
(No Call Waiting), Flash = Flash, Hold = ???
Thank you,
-gcc
2013 Nov 13
2
[LLVMdev] SCEV getMulExpr() not propagating Wrap flags
...opagate the NUW and NSW flags if both the
// outer mul and the inner addrec are guaranteed to have no overflow.
//
// No self-wrap cannot be guaranteed after changing the step size, but
// will be inferred if either NUW or NSW is true.
Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
// If all of the other operands were loop invariant, we are done.
if (Ops.size() == 1) return NewRec;
I understand that you can't assume it won't wrap around with the new
stride, but I...
2013 Nov 16
0
[LLVMdev] SCEV getMulExpr() not propagating Wrap flags
...lags if both the
> // outer mul and the inner addrec are guaranteed to have no overflow.
> //
> // No self-wrap cannot be guaranteed after changing the step size, but
> // will be inferred if either NUW or NSW is true.
> Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
> const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
>
> // If all of the other operands were loop invariant, we are done.
> if (Ops.size() == 1) return NewRec;
>
> I understand that you can't assume it won't wrap aro...
2013 Nov 16
2
[LLVMdev] SCEV getMulExpr() not propagating Wrap flags
On 16 November 2013 06:56, Andrew Trick <atrick at apple.com> wrote:
> - getMulExpr constructs a new AddRec with NSW:
>
> Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
> const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
>
Hi Andrew,
Thanks for looking at this.
Clearing the flags here makes sense, but it's being too conservative. I'm
thinking I'll need something like propagateSafeFlags(...) with knowl...
2013 Nov 16
0
[LLVMdev] SCEV getMulExpr() not propagating Wrap flags
> On Nov 16, 2013, at 4:11 AM, Renato Golin <renato.golin at linaro.org> wrote:
>
>> On 16 November 2013 06:56, Andrew Trick <atrick at apple.com> wrote:
>> - getMulExpr constructs a new AddRec with NSW:
>>
>> Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
>> const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
>
> Hi Andrew,
>
> Thanks for looking at this.
>
> Clearing the flags here makes sense, but it's being too conservative. I'm thinking I'll need something like propa...
2007 Jan 04
2
Re: [nut-Patches][303751] Checking UPS Temperature
...+static void parse_temperature(utype *ups, char *temperature)
> +{
> + double temp;
> +
> + debug(" temperature: [%s]\n", temperature);
> +
> + /* empty response is ignored -- not all ups return temperatures */
> + if (!strcmp(temperature, "")) {
> + clearflag(&ups->status, ST_OVERTEMP);
> + return;
> + }
> +
> + /* get the temperature as a double */
> + temp = atof(temperature);
> +
> + /* check the temperature against the overtemp value */
> + if (temp > upsovertemp)
> + ups_overtemp(ups);
> + else
> + clea...
2004 Jul 29
2
Aastra 480e phone ADSI config
...ATE
SHOWDISPLAY "talkingto" AT 2 NOUPDATE
SHOWDISPLAY "callname" AT 3
SHOWDISPLAY "callnum" AT 4
GOTO "stableCall"
ENDIF
IFEVENT OFFHOOK THEN
CLEAR
CLEARFLAG "nocallwaiting"
CLEARDISPLAY
SHOWDISPLAY "titles" AT 1
SHOWKEYS "vmail"
SHOWKEYS "cidblock"
SHOWKEYS "cwdisable" UNLESS "nocallwaiting"
GOTO &q...
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...(which is in a seperate abstraction
layer) also knows about the gap */
ogg_int64_t granulepos;
int lacing_fill;
ogg_uint32_t body_fill;
/* decode-side state data */
int holeflag;
int spanflag;
int clearflag;
int laceptr;
ogg_uint32_t body_fill_next;
} ogg_stream_state;
typedef struct {
ogg_reference *packet;
long bytes;
long b_o_s;
long e_o_s;
ogg_int64_t granulepos;
ogg_int64_t packetno; /* sequence number for decode; the framin...