Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
flags
- Page 1
Re: Delete unused MySQL indexes
Programming
Databases
1 Month Ago
by Reverend Jim
…? Again, as a guess, if you have enabled the correct
flags
and let the system run through typical processing, the returned…
Flags in CCR
Programming
Software Development
16 Years Ago
by Epic Tissue
… and the value of the
flags
in the CCR after each instruction. Assume
flags
(X,N,C,V,Z…b]move.b #126,d1[/b] d1 = 126. no
flags
set. [b]add.b d0,d1[/b] Well d0 …was 8, so 8 + 126 = 134. no
flags
set. (or should the V(oVerflow) flag be set because… then the product is 0000110. d1 = 6(dec). no
flags
are set. [b]sub.b #6,d1[/b] d1 …
Flags used to test conditional jumps...
Programming
Software Development
15 Years Ago
by runtogetdone
…the OF, ZF, SF, and CF
flags
, but I do not understand which
flags
are checked under a given jump instruction…... For example, what
flags
are checked for a unsigned greater-than jump? Thanks, …Tyler (In other words, how do I determine the
flags
in the right column of this website?) [url]http://siyobik…
Re: Flags used to test conditional jumps...
Programming
Software Development
15 Years Ago
by wildgoose
… operation and/or compares will set conditional
flags
. You then branch based upon those
flags
. For math there is a signed result…
Re: Flags used to test conditional jumps...
Programming
Software Development
15 Years Ago
by runtogetdone
… operation and/or compares will set conditional
flags
. You then branch based upon those
flags
. For math there is a signed result…
Re: Flags used to test conditional jumps...
Programming
Software Development
15 Years Ago
by cyb3rl0rd1867
… helpful even without storing the answer because it sets certain
flags
which can help you compare two numbers. For example: mov…
flags in ip packet?
Hardware and Software
Networking
20 Years Ago
by blackberry
… question is about ip packet ,in fact
flags
field in it . we have 3
flags
in fragment section as well as fragment…
Flags on homepage?
Digital Media
UI / UX Design
14 Years Ago
by eduardc
I want to put the english and spanish
flags
on the homepage of my website: [url removed]! How do I do that? By links?
GCC Compiler Flags Don’t Match ELF Flags
Programming
Software Development
14 Years Ago
by dansnyderECE
…$(SESCSOURCEDIR)/src/libacc \ -I$(XTOOLSPREFIX)/mipseb-linux/include # C++
flags
CXXFLAGS = $(CFLAGS) \ -I$(XTOOLSPREFIX)/mipseb-linux/include/c++/3…file) Start of section headers: 3611896 (bytes into file)
Flags
: 0x10001001, noreorder, o32, mips2 Size of this header: …
Re: GCC Compiler Flags Don’t Match ELF Flags
Programming
Software Development
14 Years Ago
by vijayan121
…keeps track of its own OMF
flags
. The linker copies the appropriate
flags
from the original object module; if… two different files have different sets of
flags
, unless they… are conflicting
flags
, the more restrictive one is applied …
trick to insert 3 flags in a row in about each in 150dp x 100dp WxH
Programming
Mobile Development
12 Years Ago
by lse123
… country and below 3 or 6 or 9
flags
(depend on settings) in 1 or 2 … the country name...well something wrong exist and
flags
appear some very big and others very-very …eg rather appear 3 in the same row normally...
flags
99% have width 480px and height 235-333px ...…400x480px...etc what is the trick to insert 3
flags
in a row (table) in about each …
Re: How do I modify the flags manualy?
Programming
Software Development
14 Years Ago
by ThatGuy2244
[QUOTE=Ancient Dragon;1451512]Lets assume all you need are 8 or fewer
flags
which can be store in one byte of data [code]
flags
db 0 ; allocate memory for the 8
flags
; set the 2d bit mov al,
flags
or al,00000010h mov
flags
,al [/code][/QUOTE] Ok, but how does that modify the real
flags
, that's only modifying your variable.
Re: How do I modify the flags manualy?
Programming
Software Development
14 Years Ago
by Ancient Dragon
Lets assume all you need are 8 or fewer
flags
which can be store in one byte of data [code]
flags
db 0 ; allocate memory for the 8
flags
; set the 2d bit mov al,
flags
or al,00000010h mov
flags
,al [/code]
Set Flags Automatically
Programming
Software Development
13 Years Ago
by triumphost
….cpp file. I want to set some
flags
when this file is included. std::cout.
flags
(std::ios::boolalpha); I want to… can I do this? I tried: #ifdef DEFINES_HPP_INCLUDED std::cout.
flags
(std::ios::boolalpha); #endif //Gives me the error: //error: 'cout…
g++ compilation flags description
Programming
Software Development
15 Years Ago
by the_caesar
… compiles my C++ code on RHEL5. It contains the compilation
flags
as listed below. Where can I get the description of… following g++ compilation
flags
: -D_UNIX -D_REENTRANT -DUNICODE -D_UNICODE -D__LITTLE_ENDIAN__ -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_LARGE_FILES…
Re: How do I modify the flags manualy?
Programming
Software Development
14 Years Ago
by Ancient Dragon
…;>create an application in real mode that uses the
flags
to store the results of calculations and other stuff. As… I said before, that is a mis-use of the
flags
. Even if you could change them they won't stay… that way very long because the
flags
are changed when certain operations are performed. The only flag…
Re: How do I modify the flags manualy?
Programming
Software Development
14 Years Ago
by ThatGuy2244
…;>create an application in real mode that uses the
flags
to store the results of calculations and other stuff. As… I said before, that is a mis-use of the
flags
. Even if you could change them they won't stay… that way very long because the
flags
are changed when certain operations are performed. The only flag…
cmp and flags
Programming
Software Development
14 Years Ago
by rcossy1023
Ok So im trying to understand
flags
.... when i set $eax = 0x80000000 and set $ecx = 0x90000000 I …want to compare and jump for
flags
so cmp EAX, ECX j(o,s,z,c) I…
Re: cmp and flags
Programming
Software Development
14 Years Ago
by -Powerslave-
[QUOTE=rcossy1023;1481507]Ok So im trying to understand
flags
.... when i set $eax = 0x80000000 and set $ecx = 0x90000000 I …want to compare and jump for
flags
so cmp EAX, ECX j(o,s,z,c) I…
Re: Set Flags Automatically
Programming
Software Development
13 Years Ago
by mike_2000_17
… types, like so: void init_stream_flags(std::ios_base& str) { str.
flags
(std::ios::boolalpha); }; But, then, of course, that function has…
Re: Set Flags Automatically
Programming
Software Development
13 Years Ago
by mike_2000_17
… will be initialized at the point where you set the
flags
depends on the compiler, the platform and the order in…
Add social flags to bottom of bootstrap nav using css
Digital Media
UI / UX Design
11 Years Ago
by patk570
… have navbar from boostrap, I am trying to get the
flags
to append to the bottom/hang from the bottom of….patrickspcrepair.com/gotya/simple-sidebar.html) to the site. The
flags
are just basic but i need to set the css…
How to convert letters into maritime letter flags, using turtle graphics?
Programming
Software Development
8 Years Ago
by Amber_6
…", "E" and "D" into maritime
flags
from turtle import * def drawInitials (ref=(0,0), w=100…(0) drawInitials ((0,0), 100, 10) I should get three
flags
as show in the figure.
Re: compiler flags
Programming
Software Development
17 Years Ago
by pprabhakar
compilation
flags
in programing how to use ?By using this
flags
how to impove the performance in execution?
Re: g++ compilation flags description
Programming
Software Development
15 Years Ago
by Ancient Dragon
… should be fairly obvious (os name). As for the other
flags
, they will depend on the program being compiled or the…
Re: How do I modify the flags manualy?
Programming
Software Development
14 Years Ago
by ThatGuy2244
… is declare a variable to hold all the bit-mapped
flags
then you can set and clear the individual bits to…? pushf pop ax -Modify ax to what I want the
flags
to be. push ax popf
Re: How to convert letters into maritime letter flags, using turtle graphics?
Programming
Software Development
8 Years Ago
by rproffitt
https://www.google.com/search?q=How+to+convert+letters+into+maritime+letter+
flags
%2C+using+turtle+graphics&ie=utf-8&oe=utf-8 finds what may be you crossposting and the Homework assignment you may be working on. Please read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question next.
MS ActiveX Compatibility Flags - DWORD??
Hardware and Software
Microsoft Windows
19 Years Ago
by Everton
…\Microsoft\Internet Explorer\ActiveX Compatibility\{app CLSID here} "Compatibility
Flags
"=dword:00800000[/B] Understand how the DWORD value can…
compiler flags
Programming
Software Development
17 Years Ago
by pprabhakar
i want to compilation
flags
, how many are there give me some flag names?
Re: compiler flags
Programming
Software Development
17 Years Ago
by ssharish2005
Compiler flag are not there to use randomly, they should used according to the requirment. Use the main page to get the complete list of compiler
flags
wiht the brief expplaination of it. Some of the common one used is -Wall -W -ansi -O<x> -o -g -c -I. ssharish
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC