problem
stringlengths
26
131k
labels
class label
2 classes
static int tftp_send_oack(struct tftp_session *spt, const char *keys[], uint32_t values[], int nb, struct tftp_t *recv_tp) { struct sockaddr_in saddr, daddr; struct mbuf *m; struct tftp_t *tp; int i, n = 0; m = m_get(spt->slirp); i...
1threat
void mjpeg_picture_header(MpegEncContext *s) { put_marker(&s->pb, SOI); jpeg_table_header(s); put_marker(&s->pb, SOF0); put_bits(&s->pb, 16, 17); put_bits(&s->pb, 8, 8); put_bits(&s->pb, 16, s->height); put_bits(&s->pb, 16, s->width); put_bits(&s->pb, 8, 3); ...
1threat
Load a local image after loading a remote image failed : <p>Is it possible to load a local image if the remote image failed?</p> <p>For example, I have the following code:</p> <pre><code>&lt;Image style={ styles.userImage } source={ { uri: http://example.com/my_image.jpg } } onError={(error) =&gt; ...} ...
0debug
C#(Unity) - How to stop the function execution? : <p>I have code like this one:</p> <pre><code> public void Interacted(){ if (GameObject.Find ("Sara").GetComponent&lt;controls&gt; ().isIntered) { if (Interer.name == "sinkTop" &amp;&amp; !sinked) { Interer.GetComponent&lt;SpriteRenderer&gt; (...
0debug
generates progress bars bysubmitbutton.want to generate a progressbar for time(Assume 1 min).means user should see 0 to 100% feature for 1 min : isc.DynamicForm.create({ ID:"DynamicForm51", autoDraw:false, }) var importSection = isc.DynamicForm.create({ ID:"DynamicForm42", autoDraw:fa...
0debug
How to toggle setContextMenu content in google map : I am working on google-map api. I have problem with google map setcontextmenu. When the user right-clicks the map, the context menu will appear. I tried to change the content of context menu option from "measure distance" to "stop measure distance". Below is...
0debug
Multiple assignment in Python : <p>In python, a=b=1 assigns 1 to the two variables at the same memory location. Then why does changing the value of one variable(variable a) does not affect the value of other(variable b)?</p>
0debug
php finding an existing data from mysql : <p>I am trying to create a registration page and throw an error when the username or the email exists but it doesn't catch the error. The table name in the database is 'users', username is 'uname' and email is 'email'. It inserts the data without a problem. I am using the sam...
0debug
how to turn stack in to an array? : <p>I am working on a stack, where i have to create it from scratch without using JAVA collections. I have coded the push, pop, peek and all other required methods. What I am confused about is the method of converting this stack to an array, with the top of the stack being element 0, ...
0debug
int ff_mpv_reallocate_putbitbuffer(MpegEncContext *s, size_t threshold, size_t size_increase) { if ( s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < threshold && s->slice_context_count == 1 && s->pb.buf == s->avctx->internal->byte_buffer) { int lastgob_pos = s->ptr_lastgob - s->p...
1threat
How to proxy http requests with plain javascript? : <p>I'm writing a bot with plain javascript that sends requests to a certain website without node.js or dependencies like jquery. I want to send every requests through a proxy, but I can't figure out how to do that with vanilla js.</p> <p>I don't know where to even st...
0debug
How do I check for reference equality in F#? : <p>F# uses structural equality for the <code>=</code> operator, which is almost always what you want:</p> <pre><code>let a = [1; 2; 3] let b = [1; 2; 3] printfn "%A" (a = b) // Prints "true" </code></pre> <p>But in some algorithms, it can be important to be able to ask ...
0debug
create a new table every time though sp : i want create a new table every time though stored proc. declare @datetime datetime declare @date varchar(20) select @datetime=(GETDATE()-1) select @date=convert(varchar(10),@datetime,112) print @datetime print @date create table #businessmster+'_'+@date ( conten...
0debug
static void do_subtitle_out(AVFormatContext *s, AVOutputStream *ost, AVInputStream *ist, AVSubtitle *sub, int64_t pts) { static uint8_t *subtitle_out = NULL; int subtitle_out_max_size = 65536; ...
1threat
static uint32_t get_features(VirtIODevice *vdev, uint32_t features) { VirtIOSerial *vser; vser = DO_UPCAST(VirtIOSerial, vdev, vdev); if (vser->bus->max_nr_ports > 1) { features |= (1 << VIRTIO_CONSOLE_F_MULTIPORT); } return features; }
1threat
void ff_vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y, int mvn, int r_x, int r_y, uint8_t* is_intra, int dir) { MpegEncContext *s = &v->s; int xy, wrap, off = 0; int A[2], B[2], C[2]; int px, py; int a_valid = 0, b_valid = 0, c_valid = 0; int fiel...
1threat
C - recursion printing array in reverse order[help] : So I have the following source code which you will find below. I'm having a hard time understanding how interchanging the two last line in the printarrayfunction with reverse the order of the array. lines inquestion: printf("%d", arr[n-1]); ...
0debug
How do we authenticate against a secured NuGet server with Cake build? : <p>We are working on automating our builds using Cake Build and we use NuGet packages from nuget.org but we also have our own NuGet Feed server which has a username/password authentication to access. How do we utilize Cake Build with a custom NuG...
0debug
static void multiwrite_cb(void *opaque, int ret) { MultiwriteCB *mcb = opaque; trace_multiwrite_cb(mcb, ret); if (ret < 0 && !mcb->error) { mcb->error = ret; } mcb->num_requests--; if (mcb->num_requests == 0) { multiwrite_user_cb(mcb); g_free(mcb); } ...
1threat
How to determine if string cotain one group o digits on the end of it : currently I am struggling with an address normalization problem. At the beggining, ul = street. In my country in most scenario occurs streets with format like "ul. Marii Skłodowskiej-Curie" without number on the end of street but in specific situat...
0debug
void timer_mod_anticipate_ns(QEMUTimer *ts, int64_t expire_time) { QEMUTimerList *timer_list = ts->timer_list; bool rearm; qemu_mutex_lock(&timer_list->active_timers_lock); if (ts->expire_time == -1 || ts->expire_time > expire_time) { if (ts->expire_time != -1) { timer_del_l...
1threat
Adding pandas columns to a sparse matrix : <p>I have additional derived values for X variables that I want to use in my model. </p> <pre><code>XAll = pd_data[['title','wordcount','sumscores','length']] y = pd_data['sentiment'] X_train, X_test, y_train, y_test = train_test_split(XAll, y, random_state=1) </code></pre> ...
0debug
Calculating age in Javascript with YYYY-mm-dd format : <p>I have birthday in following format: </p> <pre><code>1982-09-20 </code></pre> <p>I need to get the exact age of the person from that birthdate ( compared with the current date). </p> <p>What's the easiest way to do this in JS? Can someone help me out please?<...
0debug
static always_inline void fload_invalid_op_excp (int op) { int ve; ve = fpscr_ve; if (op & POWERPC_EXCP_FP_VXSNAN) { env->fpscr |= 1 << FPSCR_VXSNAN; } if (op & POWERPC_EXCP_FP_VXSOFT) { env->fpscr |= 1 << FPSCR_VXSOFT; } switch (op & ~(POWERPC...
1threat
When should we define fields as "volatile"? When is it unnecessary? : <p>I understand <code>volatile</code> should be used on a class field to prevent the JVM from caching the value so when it will always be the latest value when it's read.</p> <p>If my understanding is correct, doesn't it mean we should define all fi...
0debug
(Python) Stock_Market prediction using Linear regression : I'm trying to improve a stock_market prediction model using LinearRegression() on sklearn, first of all I'm new to machine learning and I am kind of struggling on how the code works here it is : [The Code][1] Then it seems that we are using the same data two...
0debug
TypeError while running argv python code : from sys import argv script, user_name = argv prompt = '> ' print ("Hi %s, I'm the %s script.") % (user_name, script) print ("I'd like to ask you a few questions.") print ("Do you like me %s?") % user_name likes = raw_inp...
0debug
How to use vector<vector<string>> arr(n)? : vector<vector<string>> arr(n); It was used in some code and i was unable to understand how to use so please help! me
0debug
Babel-node doesn't transform spread operator on preset env : <p>I'm trying to use babel-node with nodemon for the hot-reloading. I've basically followed this <a href="https://github.com/babel/example-node-server" rel="noreferrer">repo</a>.</p> <p>My <code>dev</code> script in <code>package.json</code> looks like that:...
0debug
Is cross-platform development worth learning : <p>I have been an Android developer for 1,5 years now and I thought about building an app for both <code>IOS</code> and <code>Android</code>. I have read multiple posts and questions about cross-platform developing. </p> <p>Most of them are rather negative saying that <co...
0debug
How do I use numba on a member function of a class? : <p>I'm using the stable version of Numba 0.30.1.</p> <p>I can do this:</p> <pre><code>import numba as nb @nb.jit("void(f8[:])",nopython=True) def complicated(x): for a in x: b = a**2.+a**3....
0debug
void qemu_purge_queued_packets(VLANClientState *vc) { VLANPacket *packet, *next; TAILQ_FOREACH_SAFE(packet, &vc->vlan->send_queue, entry, next) { if (packet->sender == vc) { TAILQ_REMOVE(&vc->vlan->send_queue, packet, entry); qemu_free(packet); } } }
1threat
void configure_icount(const char *option) { vmstate_register(NULL, 0, &vmstate_timers, &timers_state); if (!option) return; if (strcmp(option, "auto") != 0) { icount_time_shift = strtol(option, NULL, 0); use_icount = 1; return; } use_icount = 2; ...
1threat
static void evaluate_flags_writeback(uint32_t flags) { int x; x = env->cc_x; if ((x || env->cc_op == CC_OP_ADDC) && flags & Z_FLAG) env->cc_mask &= ~Z_FLAG; env->pregs[PR_CCS] &= ~(env->cc_mask | X_FLAG); flags &= env->cc_mask; env->pregs[PR_CCS] |= flags; }
1threat
Boolean function always returning true : <p>I am taking a course on Udemy to learn C++, and I am following along with the professor. </p> <p>This is the exact code that is being used in the class. You pass in a letter, and it tells you whether or not it is a vowel. However, it is saying every letter is a vowel. For e...
0debug
'goto *foo' where foo is not a pointer. What is this? : <p>I was playing around with <a href="https://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html">labels as values</a> and ended up with this code. </p> <pre><code>int foo = 0; goto *foo; </code></pre> <p>My C/C++ experience tells me <code>*foo</code> means <code>...
0debug
Php alert doesn't work : I am trying to pop up an alert in html with php if the user hasn't upload a file in input element. The source code in index.php : <input type='file' name="imgInp" id="imgInp" accept=".jpg, .png, .jpeg|images/*"/> <img style="max-height: 400px; max-width: 400px;" id="blah"...
0debug
static USBDevice *usb_bt_init(USBBus *bus, const char *cmdline) { USBDevice *dev; struct USBBtState *s; HCIInfo *hci; const char *name = "usb-bt-dongle"; if (*cmdline) { hci = hci_init(cmdline); } else { hci = bt_new_hci(qemu_find_bt_vlan(0)); } if (!hci) ...
1threat
I want to create a simple login portal but there are som issues : i create a simple login portal but there are some issues and i try all solution please help me this is my login.php file. <!DOCTYPE html> <html> <head> <title>Login Page</title> <link rel="short icon" href="sopraico...
0debug
static int seg_write_trailer(struct AVFormatContext *s) { SegmentContext *seg = s->priv_data; AVFormatContext *oc = seg->avf; int ret = 0; if (!oc) goto fail; if (!seg->write_header_trailer) { if ((ret = segment_end(oc, 0)) < 0) goto fail; open_null_...
1threat
static int avi_read_header(AVFormatContext *s) { AVIContext *avi = s->priv_data; AVIOContext *pb = s->pb; unsigned int tag, tag1, handler; int codec_type, stream_index, frame_period; unsigned int size; int i; AVStream *st; AVIStream *ast = NULL; int avih_width = 0...
1threat
Python - Quiz Help (: : I am a beginner to Python and having difficulties with a short quiz I am creating. I have created a short video, to show exactly what is happening: https://www.youtube.com/watch?v=aHRAr0T-i-Q&feature=youtu.be How can I have it so it comes up with the question, "Who is Conor Mcgregor?" an...
0debug
Set component's props dynamically : <p>I need to set component's props after it is stored in a variable, here is pseudo code:</p> <pre><code>render(){ let items = [{title:'hello'}, {title:'world'}]; let component = false; switch (id) { case 1: component = &lt;A /&gt; break; ca...
0debug
void do_tw (int flags) { if (!likely(!((Ts0 < Ts1 && (flags & 0x10)) || (Ts0 > Ts1 && (flags & 0x08)) || (Ts0 == Ts1 && (flags & 0x04)) || (T0 < T1 && (flags & 0x02)) || (T0 > T1 && (flags & 0x01))))) do_raise_exception_err(EXCP_...
1threat
static av_cold int encode_close(AVCodecContext* avc_context) { TheoraContext *h = avc_context->priv_data; th_encode_free(h->t_state); av_freep(&h->stats); av_freep(&avc_context->coded_frame); av_freep(&avc_context->stats_out); av_freep(&avc_context->extradata); avc_context->extrada...
1threat
struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, double *param) { struct SwsContext *ctx; ct...
1threat
MS SQL Query. VERY IMPORTANT : I have to write a query regarding the statement below: List all directors who directed 50 movies or more, in descending order of the number of movies they directed. Return the directors' names and the number of movies each of them directed. I have written multiple variations but I...
0debug
Next.js: Router.push with state : <p>I'm using next.js for rebuilding an app for server side rendering. I have a button that handles a search request.</p> <p>In the old app, the handler was this one:</p> <pre><code>search = (event) =&gt; { event.preventDefault(); history.push({ pathname: '/results', ...
0debug
how to implement this function : now have `fmapT` and `traverse` : fmapT :: Traversable t => (a -> b) -> t a -> t b traverse :: Applicative f => (a -> f b) -> t a -> f (t b) how can i implement the function `over` with `traverse` as an argument t...
0debug
Properties in C# advantage : <p>Although I understand the basic concept of properties like providing read, read-write access to private data members, I am still having a hard time understanding how it would be useful over just declaring the member as public. In what scenarios is it useful? and if it is a way to change ...
0debug
How to prevent client from changing critical HTML inputs? : <p>As you probably know, you can use <code>Inspect element</code> in Chrome to modify the web page you're viewing and possibly mess up with <code>radio</code> values (or similar), which you're NOT meant to change, <code>required</code> inputs and much more.</p...
0debug
void armv7m_nvic_acknowledge_irq(void *opaque) { NVICState *s = (NVICState *)opaque; CPUARMState *env = &s->cpu->env; const int pending = s->vectpending; const int running = nvic_exec_prio(s); int pendgroupprio; VecInfo *vec; assert(pending > ARMV7M_EXCP_RESET && pending < s->num_i...
1threat
int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count) { int i, av_uninit(j); int current_ref_assigned = 0, err = 0; Picture *av_uninit(pic); if ((h->avctx->debug & FF_DEBUG_MMCO) && mmco_count == 0) av_log(h->avctx, AV_LOG_DEBUG, "no mmco here\n"); for (i...
1threat
when i call the Startactivity(i) the error is shown (see below) my code is Intent i=new Intent(getApplicationContext(),NewRecipe.class); : FATAL EXCEPTION: main Process: com.example.bullet.recipesearch, PID: 15986 ...
0debug
TypeError: first argument must be an iterable of pandas objects, you passed an object of type "DataFrame" : <p>I have a big dataframe and I try to split that and after <code>concat</code> that. I use</p> <pre><code>df2 = pd.read_csv('et_users.csv', header=None, names=names2, chunksize=100000) for chunk in df2: chu...
0debug
How to write a while loop into a CSV file : <p>My code looks like:</p> <pre><code>x=0 while (x&lt;3): print('purple'), print('yellow'), print({x}) x=x+1 </code></pre> <p>I want it to log this data into a csv file named 'daffodils.csv'. How do I do this so that the iterations won't write over eachother...
0debug
static void pxb_pcie_dev_realize(PCIDevice *dev, Error **errp) { if (!pci_bus_is_express(dev->bus)) { error_setg(errp, "pxb-pcie devices cannot reside on a PCI bus"); return; } pxb_dev_realize_common(dev, true, errp); }
1threat
Why using checkout and reset naming for the file-level operations in git? : <p>After reading <a href="https://www.atlassian.com/git/tutorials/resetting-checking-out-and-reverting/summary" rel="nofollow noreferrer">this</a> nice article on git Reset, Checkout, and Revert I still don't quite understand the connection bet...
0debug
Count two collums from 1 table : [database view][1] [1]: https://i.stack.imgur.com/CkMM1.png I got this table (date, indoor_km, outdoor_km,...) I have found the Sql count to count indoor_km or outdoor_km But i'm looking for a sql count for the 2 colums from 1 table
0debug
static int decode_user_data(Mpeg4DecContext *ctx, GetBitContext *gb) { MpegEncContext *s = &ctx->m; char buf[256]; int i; int e; int ver = 0, build = 0, ver2 = 0, ver3 = 0; char last; for (i = 0; i < 255 && get_bits_count(gb) < gb->size_in_bits; i++) { if (show_bits(gb, 23...
1threat
Angular 2 filter/search list : <p>I'm looking for the angular 2 way to do <a href="http://www.w3schools.com/howto/howto_js_filter_lists.asp" rel="noreferrer">this</a>.</p> <p>I simply have a list of items, and I want to make an input whos job is to filter the list.</p> <pre><code>&lt;md-input placeholder="Item name.....
0debug
C++ Outputting a text file in reverse order : <p>For this program I am writing, I am suppose to be taking in a text file from the command line, reversing the order of everything in the file and then outputting the text into a new text file with "-reverse" attached on to it. The problem I am having is reversing the orde...
0debug
document.write('<script src="evil.js"></script>');
1threat
Is there any Data Compression Algorithms which is not based on Pattern? : <p>Most of the Data Compression Algorithms are based on 'Pattern'. But I'm looking for a Data Compression Algorithm which is not based on 'Pattern'</p>
0debug
Replace all vowels with 1,2,3... java : <p>Given a String str, return a string with all vowels replaced with numbers using the following rules.</p> <p>Upper cased vowels should be replaced with increasing odd numbers starting at 1. For example, the first upper case vowel would be replaced with a 1, the second with a 3...
0debug
get data from datalist to another page using session showing error input string is not in correct format : if(Session["proid"].ToString()!=null && Session["name"].ToString()!=null && Session["desc"].ToString()!=null && Session["price"].ToString()!=null) { int id = Convert.ToInt32(S...
0debug
Get second td of tr using jquery : <p>I'm trying to get td values of tr.. but unfortunately it's not working.. may be there is something wrong</p> <p>My html looks like </p> <pre><code>&lt;tr class="dname"&gt; &lt;td&gt;abc&lt;/td&gt; &lt;td&gt;value here&lt;/td&gt; &lt;/tr&gt; </code></pre> <p>My jquery ...
0debug
Count by ID if value is lower than and set the value 1 : <p>I have a problem. My table is <strong>tableXYZ</strong> I have a row <strong>a</strong> where i set the year. I have a row <strong>b</strong> where i need to set value 1 if the year from row <strong>a</strong> is lower than 2019 and 0 if is > 2019.</p> <p>Aft...
0debug
static int exif_decode_tag(void *logctx, GetByteContext *gbytes, int le, int depth, AVDictionary **metadata) { int ret, cur_pos; unsigned id, count; enum TiffTypes type; if (depth > 2) { return 0; } ff_tread_tag(gbytes, le, &id, &type, &count, &cur...
1threat
static void qmp_tmp105_set_temperature(const char *id, int value) { QDict *response; response = qmp("{ 'execute': 'qom-set', 'arguments': { 'path': '%s', " "'property': 'temperature', 'value': %d } }", id, value); g_assert(qdict_haskey(response, "return")); QDECREF(response); ...
1threat
I am passing a vector to a function. Program is compiling but when I am running it, it is showing segmentation fault(core dump). : <p>I want to sort a text file using merge sort. I am using vector to process the text file. This program is compiling correctly but when I am running it, it is showing segmentation fault(co...
0debug
static const OptionDef *find_option(const OptionDef *po, const char *name) { const char *p = strchr(name, ':'); int len = p ? p - name : strlen(name); while (po->name != NULL) { if (!strncmp(name, po->name, len) && strlen(po->name) == len) break; po++; } return...
1threat
how it not working add class using ng-repeat? : it may be click photo and not add class inside the ng-repeat using angularjs <div class="resultitem" ng-repeat="a in vm.gettrustalbum"> <div class="result"> </div> </div> add class "demo" inside the ng-repeat? output ...
0debug
What does "this" refer to for each constructors? : <p>Please, explain what " : this()" refer to.Cant I use "base" instead of it. When I move cursor on "this" it displays another Constructor . Or when I replace it with "base" it gives this error: "object doesnt contain a constructor that takes 1 argument". </p> <blockq...
0debug
Ruby: I've seached for ways to remove trailing commas, but have found that : So i'm pretty new to Ruby and programming in general. I'm trying to send data (a list of passwords in a hashlist and how often they appear in the list) in an array to a .txt file in JSON format, which i will then use to make charts. Here's...
0debug
Using React within a dynamically loaded es module : <p>I have been loading a native ES Module which can be simplified to <code>src/test.tsx</code>:</p> <pre><code>export default class Test { constructor() { console.log('loaded'); } } </code></pre> <p>I can load this in my browser and initialize it gre...
0debug
Lopp trough key value duplicates in sub array : I'm trying to loop trough a simple array of arrays, then if I find duplicates of `'id'` value in a sub array, loop trough them. This can be obvious for you but I can't find a simple way to do this. Any ideas? $records = array( array( 'id' =...
0debug
static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret) { if (ret && !monitor_has_error(mon)) { if (monitor_ctrl_mode(mon)) { qerror_report(QERR_UNDEFINED_ERROR); } MON_DEBUG("command '%s' returned failure but did not pass an error\n", ...
1threat
import re text = 'Python Exercises' def replace_spaces(text): text =text.replace (" ", "_") return (text) text =text.replace ("_", " ") return (text)
0debug
Sorting an array of objects in javascript by key value does not work : <p>I am trying to sort and array of objects in javascript that represent interfaces of devices. I have found some code here that seems to work for some cases and does not for others.</p> <p>So here is my code:</p> <pre><code>compareByName = functi...
0debug
def frequency_Of_Largest(n,arr): mn = arr[0] freq = 1 for i in range(1,n): if (arr[i] >mn): mn = arr[i] freq = 1 elif (arr[i] == mn): freq += 1 return freq
0debug
i have try this code but it it not working.though all the field are null but it still take action.code is given below : if(((f_NameText.getText())!=null)&&((l_NameText.getText())!=null)&&((u_NameText.getText())!=null)&&((newMembersPassword.getPassword())!=null)) {newMembersButton.addActionListener(new NewJoinBu...
0debug
react, differences between component create with extend class and simple const = function : <p>In react tutorial:</p> <p><a href="https://egghead.io/lessons/javascript-redux-react-todo-list-example-filtering-todos" rel="noreferrer">https://egghead.io/lessons/javascript-redux-react-todo-list-example-filtering-todos</a>...
0debug
Pass object as prop on Vue : <p>How do you go on passing objects as props on vue? I would imagine this would be a simple task but apparently not.</p> <p>I have the following code on a .vue file: </p> <p>`</p> <pre><code>&lt;template&gt; &lt;div id="scatter"&gt;&lt;/div&gt; &lt;/template&gt; &lt;script&gt; e...
0debug
Concise way of updating a nested value inside a record in Elm (0.18) : <p>I am looking for a concise way of updating a nested value inside a record in Elm (0.18).</p> <p>Given the following example:</p> <pre><code>person = { name = "Steven", address = { country = "Spain", city = "Barcelona" } } </code></pre> <p>I ca...
0debug
static int set_dirty_tracking(void) { BlkMigDevState *bmds; int ret; QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { bmds->dirty_bitmap = bdrv_create_dirty_bitmap(bmds->bs, BLOCK_SIZE, NULL); if (!bmds->dirty_bitmap) ...
1threat
av_cold void ff_vp8dsp_init(VP8DSPContext *dsp) { dsp->vp8_luma_dc_wht = vp8_luma_dc_wht_c; dsp->vp8_luma_dc_wht_dc = vp8_luma_dc_wht_dc_c; dsp->vp8_idct_add = vp8_idct_add_c; dsp->vp8_idct_dc_add = vp8_idct_dc_add_c; dsp->vp8_idct_dc_add4y = vp8_idct_dc_add4y_c; dsp->vp8_idc...
1threat
adding unsigned int to unsigned int* : <p>My development environment consists of the g++ cross compiler for ARM OMAP Sitata. I discovered an unusual nuance of simple pointer arithmetic, when adding an unsigned int to an unsigned int*, as follows:</p> <pre><code>unsigned int* dst_base_addr; unsigned int* dst_addr; uns...
0debug
static void qxl_init_ramsize(PCIQXLDevice *qxl) { if (qxl->vgamem_size_mb < 8) { qxl->vgamem_size_mb = 8; qxl->vgamem_size = qxl->vgamem_size_mb * 1024 * 1024; if (qxl->ram_size_mb != -1) { qxl->vga.vram_size = qxl->ram_size_mb * 1024 * 1024; if (qxl->vga.vra...
1threat
static int decode_stream_header(NUTContext *nut){ AVFormatContext *s= nut->avf; ByteIOContext *bc = &s->pb; StreamContext *stc; int class, nom, denom, stream_id; uint64_t tmp, end; AVStream *st; end= get_packetheader(nut, bc, 1); end += url_ftell(bc) - 4; GET_V(stream_id...
1threat
perl search and replace with Tie : my search and replace is not working neither it is throwing any error, i tried to modify the code and provide the i/p where it is working, not sure where the error occurs while compling the code does't provide an error > #!/usr/bin/perl -w > use strict; ...
0debug
Pybind11 or Boost.Python or neither- : <p>I'm curious what the most flexible, most efficient, and most seamless method is for getting C++ and Python to talk to each other. The contenders seem to be Pybind11, Boost.Python, and neither (simply writing functions and wrappers as below).</p> <pre><code>using namespace boo...
0debug
Add class to HTML attribute using jQuery : <p>I'd like to add the class <code>btn</code> to my hyperlink after the page loads.</p> <p>Here is my current script:</p> <p><strong>HTML</strong></p> <pre><code>&lt;span id="callnow" class="mhMobile callnow"&gt;&lt;a href="tel:01234567890"&gt;01234567890&lt;/a&gt;&lt;/span...
0debug
static void d3d11va_frames_uninit(AVHWFramesContext *ctx) { AVD3D11VAFramesContext *frames_hwctx = ctx->hwctx; D3D11VAFramesContext *s = ctx->internal->priv; if (frames_hwctx->texture) ID3D11Texture2D_Release(frames_hwctx->texture); if (s->staging_texture) ID3D11Texture2D_Rel...
1threat
Object reference is required for non-static field. List<> : <p>I'm a little confused about this fairly typical error. My code is as below. I am trying to add items to a list.</p> <p>The compiler is saying I need an object reference for non-static field, but I can't make the class static because I am not returning a va...
0debug
static void spapr_cpu_core_register_types(void) { const SPAPRCoreInfo *info = spapr_cores; type_register_static(&spapr_cpu_core_type_info); while (info->name) { spapr_cpu_core_register(info); info++; } }
1threat
What wrong with BST : <p>I want to print all the key in BST. Why it printing only "the tree is empty" It just printing the tree is empty 2 times. my coding first method is about creating a node to be a leaf and second is creating the leaf into the tree and thrid is printing the tree by inorder. If my coding is too ba...
0debug
Pascal help plss (:() : This is the code: <!-- begin snippet: js hide: false console: true babel: false --> <!-- language: lang-html --> program pi18; var a,b,c,P:real; begin read(a,b,c); if(a+b<c) or (b+c<a) or (a+c<b) then writeln('Nu exista asa triunghi') else begin ...
0debug
a tag without line-decoration in Bootstrap 4 : <p>I would like to have a link that looks just like plain text except for the cursor by using as few css as possible.</p> <p>The problem: <code>&lt;a&gt;</code> has a blue color (that darkens when hovered) and also has underline on hover. I want it to look like plain text...
0debug
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){ int i; s->dts= s->pts= AV_NOPTS_VALUE; s->offset= 0; for(i = 0; i < AV_PARSER_PTS_NB; i++) { if ( s->next_frame_offset + off >= s->cur_frame_offset[i] &&(s-> frame_offset < s->cur_frame_offset...
1threat