Tagged Questions
The restrict tag has no wiki summary.
96
votes
21answers
27k views
How do I protect python code?
I am developing a piece of software in python that will be distributed to my employer's customers. My employer wants to limit the usage of the software with a time restricted license file.
If we ...
20
votes
5answers
8k views
What does the restrict keyword mean in C++?
I was always unsure, what does the restrict keyword mean in C++?
Does it mean the two or more pointer given to the function does not overlap?
What else does it mean?
17
votes
1answer
3k views
Realistic usage of the C99 'restrict' keyword?
I was browsing through some documentation and questions/answers and saw it mentioned. I read a brief description, stating that it would be basically a promise from the programmer that the pointer ...
12
votes
4answers
2k views
Does the restrict keyword provide significant anti-aliasing benefits in gcc / g++
Has anyone seen any numbers / analysis on whether or not use of the C / C++ restrict keyword in gcc / g++ actual provides any significant performance boost in reality ( and not just in theory )?
I've ...
8
votes
6answers
875 views
What can human beings make out of the restrict qualifier?
If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing.
By contrast, the way ...
7
votes
3answers
220 views
How to tell a C or a C++ compiler that pointers are not aliased
I have function that receives an array of pointers like so:
void foo(int *ptrs[], int num, int size)
{
/* The body is an example only */
for (int i = 0; i < size; ++i) {
for (int ...
7
votes
3answers
682 views
When to use restrict and when not to
I have a general understanding of restrict but I'm hoping to clarify some fine points. I have a function that reads a null-terminated string from one buffer and writes out a URL encoded version in ...
6
votes
2answers
86 views
Can __restrict__ be applied to shared_ptr<T>?
Smart pointers are pointers underneath, so is there any way of defining a shared_ptr parameter to a function as not aliasing another shared_ptr, or another pointer of any sort?
Or is this, for some ...
6
votes
4answers
100 views
Prevent two object internals from aliasing
I have a function signature similiar to this
void Mutliply(const MatrixMN& a, const MatrixMN& b, MatrixMN& out);
Internally the matrix class has a float* data; that represents the m x n ...
5
votes
1answer
89 views
Is there a practical use for a `volatile restrict` pointer?
I can see practical use for a const volatile qualified variable, like
const volatile uint64_t seconds_since_1970;
if an underlying hardware mechanism updates the value every second, but the ...
5
votes
3answers
406 views
What are the semantics of C99's “restrict” with regards to pointers to pointers?
I am doing lots of matrix arithmetic and would like to take advantage of C99's restrict pointer qualifier.
I'd like to setup my matrices as pointers to pointers to allow for easy subscripting, like ...
4
votes
2answers
238 views
Is this an invalid use of restrict pointers?
Suppose I have large array which I calculate an index into and pass to a second function. As a simple example, something like:
void foo(float* array, float c, unsigned int n)
{
for (unsigned int ...
3
votes
1answer
97 views
Limited selection in a JTextField/JTextComponent?
Consider a JFormattedTextField (or any JTextComponent, really) wherein there is a prefix and a suffix displayed around what is the actual "text" of the field.
For instance, the double 3.5 would be ...
3
votes
4answers
164 views
restrict qualifier on member functions (restrict this pointer)
Note: To clarify, the question is not about the use of the restrict keyword in general, but specifically about applying it to member functions as described here.
gcc allows you to use the ...
3
votes
4answers
94 views
C99: Restricted Pointers to Document Thread Safety?
This question isn't about the technical usage of restricted, more about the subjective usage. Although I might be mistaken as to how restricted technically works, in which case you should feel free to ...
3
votes
2answers
109 views
Restricting admin from destroying own account using cancan
Here is a snippet of my code from my ability class
if user.admin?
can :manage, :all
can :destroy, :all if != current_user
I am sure that you can figure out what I am trying to do here. ...
3
votes
2answers
412 views
Restrict sales of an app by specific devices?
Is it possible to restrict sales of an app on the Android Market by specific devices, or by features of a device (screen resolution, processor, diskspace etc..)?
I know that I'm going to be bombarded ...
3
votes
2answers
84 views
Restrict Delphi 7 pgm to corporate LAN
Situation: i have a licencing program that i wrote in Delphi 7, this allows users to create licences for products that have been sold. There is a security risk with this because any employee could ...
3
votes
4answers
159 views
When using a restrict Pointer in C, is it OK to change a variable using its initial Identifier?
When using a restrict Pointer in C, is it OK to change the variable using its initial Identifier? For example:
int foo = 0;
int * restrict fooPtr = &foo;
++(*fooPtr); // Part ...
3
votes
1answer
110 views
Restricted pointer assignments
I have a question regarding restricted pointer assignments. See the comments in code for specific questions. Overall, I'm just wondering what's legal with restrict (I've read the standard, but still ...
3
votes
4answers
946 views
Restrict file access — only read through PHP
Ok, I am using a GoDaddy web hosting plan on a Windows platform. This was not my choice -- it has to do with a different part of the actual site using ASP.NET (also not my choice). I have a SQL ...
3
votes
1answer
2k views
C/C++ __restrict type
Is there a way to define using typedef integral/float type which implies no aliasng?
something equivalent to (but primitive construct):
template < typename T >
struct restrict { T* __restrict ...
3
votes
6answers
599 views
Restricting T to string and int?
I have build myself a generic collection class which is defined like this.
public class StatisticItemHits<T>{...}
This class can be used with int and string values only. However this
public ...
2
votes
2answers
116 views
C++ __restrict and shared_ptr hacks
Is the following safe?
struct K { ... }
struct A
{
A(int psize) : size(psize), foo(nullptr), bar(nullptr)
{
auto dataptr = (K*)_aligned_malloc(sizeof(K) * psize * 2, 32);
...
2
votes
2answers
306 views
Restricted pointer questions
I'm a little confused about the rules regarding restricted pointers. Maybe someone out there can help me out.
Is it legal to define nested restricted pointers as follows:
int* restrict a;
int* ...
2
votes
1answer
184 views
Does GCC C++ compiler take into account __restrict - statements?
I've have investigating the effect of __restricting certain pointers in a C++-code, when compiling it via the GCC-compiler.
It turned that not only the run-time remains quite the same, but the ...
2
votes
4answers
390 views
Constraining window position to desktop working area
I want to allow a user to drag my Win32 window around only inside the working area of the desktop. In other words, they shouldn't be able to have any part of the window extend outside the monitor(s) ...
2
votes
1answer
564 views
error using restrict keyword
In the following example:
void foo (double *ptr)
{
const double * restrict const restr_ptr=ptr;
}
I get this error:
error: expected a ";" const double * restrict const restr_ptr=ptr;
...
2
votes
2answers
222 views
restrict-edness with pre-c99
Considering this code, VC9 doesn't detect aliasing :
typedef struct { int x, y; } vec_t;
void rotate_cw(vec_t const *from,
vec_t *to)
{
/* Notice x depends on y and vice ...
2
votes
5answers
3k views
SQL 2005 sql login ip restriction
Is there a way to restrict a specific sql 2005 login on a Microsoft SQL Server 2005, standard version (sql is in mixed mode) to specific IP adresses, while other logins, windows authentated ones, are ...
1
vote
1answer
77 views
Control who uses iOS enterprise app using enterprise distribution provisioning profile?
If I subscribe to the iOS Developer Enterprise Program, and want to restrict use of an app to specific individuals' devices, can I use an enterprise distribution provisioning profile to nominate the ...
1
vote
3answers
89 views
Allowing only certain characters in string in vb6
I wanna make only predefined characters to be able to used on my textbox in vb6.
How can i achive that?
Predefined characters will be like 0-9 and A, C, M, E all other characters besides these gonna ...
1
vote
0answers
86 views
Flash player disable download of flv files
We have a video streaming website, and the company decided to make some of the video content paid.
So we built an authenticated area and finalized all the payment issues, and now we are down to the ...
1
vote
1answer
53 views
how to restrict user input (eg: voting button) based on their IP address?
I'm building a website with xhtml, css, jquery, php and mysql. In one of the webpages, I have given the option to the user to vote - there is a like and dislike button on the page, and when the user ...
1
vote
2answers
57 views
How to restrict the image translation outside ipad screen
I am currently using UIPanGestureRecognizer to translate an image within my ipad screen but the problem is the image is going outside the screen.
So how can i able to restrict the image movement ...
1
vote
1answer
40 views
deny direct access to file on S3
I am building a django/s3 application with the following behaviour:
User logs in
User uploads a document -> document goes to S3 (eventually with a UID name and an alias in the DB?)
User can download ...
1
vote
1answer
248 views
WordPress MultiSite - Block Access to Subfolder on Server for All But One Site
The WordPress installation has several sites/domains. Separate from the WordPress installation is an HTML site in a subfolder on the server. I only want one of the domains to be able to access this ...
1
vote
4answers
150 views
What's a good way to check availability of __restrict keyword?
I am looking a set of #ifdef's to check availability of __restrict keyword for GCC and Visual Studio. I assume that it needs to check compiler version, but I don't know for which versions it was ...
1
vote
2answers
101 views
restrict access to mp4 files from someone else's domains
The problem is there. I have a flash player (LongTailVideo player) located at mydomain.com.
I also have mp4 files located at x.mydomain.com, y.mydomain.com, etc. I want these files can ONLY be ...
1
vote
3answers
160 views
Restrict competition entry to once per day
I'm writing a PHP competition script for a members site that needs to restrict entries to one per day per member. So far I have the following MySQL code:
SELECT ce_id
FROM competition_entries
...
1
vote
2answers
1k views
Retrieve current Outlook appointment
I'm writing a program that checks outlook for appointments, and basically I just need the current appointment - and if no current appointment then just the next or even previous appointment.
I figure ...
1
vote
1answer
245 views
Excel - restrict to fixed text or integer length in the given range of cells
How to make few range of cells to be restricted with fixed length in number of characters keying in.
How to make range of fields to be of Integer type alone. Meaning, it should not accept anything ...
1
vote
1answer
436 views
How to write a git hook to restrict writing to branch?
I'd like to restrict write access for the master branch to only several developers, while allowing others to pull everything and push to other non-master branches. Idea is that a developer would push ...
1
vote
2answers
334 views
AS3 - Allow Forward Slash In Input Text?
i'm trying to allow forward slash to be entered in my input text field
myInputField.restrict = "A-Za-z.\\-\\/";
the above text field should allow upper case letters, lower case letters, periods, ...
1
vote
1answer
230 views
How to Index Only Pages with Certain Urls with Nutch?
I want nutch to crawl abc.com, but I want to index only car.abc.com. car.abc.com links can in any levels in abc.com. So, basically, I want nutch to keep crawl abc.com normally, but index only pages ...
1
vote
2answers
579 views
SQL Server - CHECK constraint on a column where values come from another table
How does one put a CHECK constraint on a column such that its range of acceptable values come from another table, without hardcoding?
Here's a simplified example:
OneManyTable
RoleID TaskID
10 ...
1
vote
6answers
963 views
How to restrict access to web application to one machine only?
I need to make sure that every users accessing my web application can do that from one machine only, so 100 users would mean 100 machines. What would be the best solution? Is detecting and storing IP ...
1
vote
1answer
205 views
c# find mail by from mail
How to find items in Outlook inbox by from email?
This version works and finds email:
String sCriteria = "[From] = 'Sebastian Nowak'";
Outlook.Items filteredItems = inbox.Items.Restrict(sCriteria);
...
1
vote
2answers
452 views
Restrict PHP access to root folders?
Im making sort of a service where people can upload PHP files and they get their own directory.
Is there a way to prevent any way the PHP can access the root of the server? and just stay in the ...
1
vote
6answers
218 views
Protect assembly?
I have a .NET DLL (C#/VB) with custom controls, extension and other stuff.
I want that it should be available for me only.
Is there any way to restrict unauthorized access to a DLL?